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

Initial preparations for CURL and Discord integration.

This commit is contained in:
Sandu Liviu Catalin
2021-01-27 07:27:48 +02:00
parent 8257eb61d6
commit 95705e87c8
1751 changed files with 440547 additions and 854 deletions

View File

@@ -33,6 +33,12 @@ extern void Register_CVehicle(HSQUIRRELVM vm);
// ------------------------------------------------------------------------------------------------
extern void Register_Chrono(HSQUIRRELVM vm);
extern void Register_Crypt(HSQUIRRELVM vm);
#ifdef SQ_ENABLE_CURL
extern void Register_CURL(HSQUIRRELVM vm);
#endif
#ifdef SQ_ENABLE_DISCORD
extern void Register_Discord(HSQUIRRELVM vm);
#endif
extern void Register_IO(HSQUIRRELVM vm);
extern void Register_Job(HSQUIRRELVM vm);
extern void Register_MMDB(HSQUIRRELVM vm);
@@ -89,6 +95,12 @@ bool RegisterAPI(HSQUIRRELVM vm)
Register_Chrono(vm);
Register_Crypt(vm);
#ifdef SQ_ENABLE_CURL
Register_CURL(vm);
#endif
#ifdef SQ_ENABLE_DISCORD
Register_Discord(vm);
#endif
Register_IO(vm);
Register_Job(vm);
Register_MMDB(vm);