1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-15 22:57:12 +02:00

Initial revision of the script loading system to be more flexible and accurate.

This commit is contained in:
Sandu Liviu Catalin
2016-06-18 20:31:35 +03:00
parent 54531071c7
commit 8846cb9351
4 changed files with 182 additions and 59 deletions

View File

@ -66,7 +66,7 @@ extern "C" {
//logging utilities
typedef void (*SqEx_LogMessage) (const SQChar * fmt, ...);
//script loading
typedef SQRESULT (*SqEx_LoadScript) (const SQChar * filepath);
typedef SQRESULT (*SqEx_LoadScript) (const SQChar * filepath, SQBool delay);
//numeric utilities
typedef SQRESULT (*SqEx_GetSLongValue) (HSQUIRRELVM vm, SQInteger idx, SqInt64 * num);
typedef SQRESULT (*SqEx_PushSLongObject) (HSQUIRRELVM vm, SqInt64 num);