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

Create the worker lib.

Just an empty file. Placeholder for a future prototype.
This commit is contained in:
Sandu Liviu Catalin
2020-09-04 23:59:02 +03:00
parent 8a12fa17e8
commit 5782b598e5
4 changed files with 22 additions and 0 deletions

View File

@@ -44,6 +44,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_Worker(HSQUIRRELVM vm);
extern void Register_Web(HSQUIRRELVM vm);
extern void Register_XML(HSQUIRRELVM vm);
@@ -98,6 +99,7 @@ bool RegisterAPI(HSQUIRRELVM vm)
Register_String(vm);
Register_System(vm);
Register_Utils(vm);
Register_Worker(vm);
Register_Web(vm);
Register_XML(vm);