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

Integrate XML module.

Integrate the XML module into the host plugin and get it to compile.
This commit is contained in:
Sandu Liviu Catalin
2020-03-22 01:33:11 +02:00
parent de3f365522
commit 39d6af7687
18 changed files with 2961 additions and 135 deletions

View File

@@ -43,6 +43,7 @@ extern void Register_SQLite(HSQUIRRELVM vm);
extern void Register_String(HSQUIRRELVM vm);
extern void Register_System(HSQUIRRELVM vm);
extern void Register_Utils(HSQUIRRELVM vm);
extern void Register_XML(HSQUIRRELVM vm);
// ------------------------------------------------------------------------------------------------
extern void Register_Constants(HSQUIRRELVM vm);
@@ -89,6 +90,7 @@ bool RegisterAPI(HSQUIRRELVM vm)
Register_String(vm);
Register_System(vm);
Register_Utils(vm);
Register_XML(vm);
Register_Constants(vm);
Register_Log(vm);