1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-10-21 02:17:18 +02:00

Integrate SQLite module.

Integrate the SQLite module into the host plugin and get it to compile.
This commit is contained in:
Sandu Liviu Catalin
2020-03-22 00:35:03 +02:00
parent 5a7034a049
commit de3f365522
24 changed files with 6052 additions and 315 deletions

View File

@@ -39,6 +39,7 @@ extern void Register_Chrono(HSQUIRRELVM vm);
extern void Register_Crypt(HSQUIRRELVM vm);
extern void Register_IO(HSQUIRRELVM vm);
extern void Register_Numeric(HSQUIRRELVM vm);
extern void Register_SQLite(HSQUIRRELVM vm);
extern void Register_String(HSQUIRRELVM vm);
extern void Register_System(HSQUIRRELVM vm);
extern void Register_Utils(HSQUIRRELVM vm);
@@ -84,6 +85,7 @@ bool RegisterAPI(HSQUIRRELVM vm)
Register_Crypt(vm);
Register_IO(vm);
Register_Numeric(vm);
Register_SQLite(vm);
Register_String(vm);
Register_System(vm);
Register_Utils(vm);