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

Separate jobs from workers.

This commit is contained in:
Sandu Liviu Catalin
2020-09-06 21:35:04 +03:00
parent 97fe1101e3
commit 31af9efe94
4 changed files with 29 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ extern void Register_CVehicle(HSQUIRRELVM vm);
extern void Register_Chrono(HSQUIRRELVM vm);
extern void Register_Crypt(HSQUIRRELVM vm);
extern void Register_IO(HSQUIRRELVM vm);
extern void Register_Job(HSQUIRRELVM vm);
extern void Register_MMDB(HSQUIRRELVM vm);
#ifdef SQ_ENABLE_MYSQL
extern void Register_MySQL(HSQUIRRELVM vm);
@@ -89,6 +90,7 @@ bool RegisterAPI(HSQUIRRELVM vm)
Register_Chrono(vm);
Register_Crypt(vm);
Register_IO(vm);
Register_Job(vm);
Register_MMDB(vm);
#ifdef SQ_ENABLE_MYSQL
Register_MySQL(vm);