initial import of sqlitex

This commit is contained in:
David Anderson
2006-06-03 19:52:21 +00:00
parent 3cde89bc74
commit aa1308e32e
38 changed files with 10770 additions and 865 deletions

17
dlls/sqlite/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