added affinity implementation

This commit is contained in:
David Anderson
2006-05-19 01:54:28 +00:00
parent 9bbb0df492
commit f9c9088303
8 changed files with 84 additions and 3 deletions

17
dlls/mysqlx/sqlheaders.h Normal file
View File

@ -0,0 +1,17 @@
#ifndef _INCLUDE_SQLHEADERS_H
#define _INCLUDE_SQLHEADERS_H
#include "ISQLDriver.h"
#define SQL_DRIVER_FUNC "GetSqlFuncs"
typedef int (*SQLAFFINITY)(AMX *amx);
struct SqlFunctions
{
SourceMod::ISQLDriver *driver;
SQLAFFINITY set_affinity;
SqlFunctions *prev;
};
#endif //_INCLUDE_SQLHEADERS_H