1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Remove the old SqThrow function from the module API.

This commit is contained in:
Sandu Liviu Catalin 2016-02-28 16:21:09 +02:00
parent 4c66cfa49d
commit 53834fe1d9
2 changed files with 0 additions and 3 deletions

View File

@ -63,7 +63,6 @@ extern "C" {
typedef HSQUIRRELVM (*SqEx_GetSquirrelVM) (void);
/*logging utilities*/
typedef void (*SqEx_LogMessage) (const SQChar * fmt, ...);
typedef void (*SqEx_SqThrow) (const SQChar * fmt, ...);
/*long numbers*/
typedef SQRESULT (*SqEx_GetSLongValue) (HSQUIRRELVM vm, SQInteger idx, SqInt64 * num);
typedef void (*SqEx_PushSLongObject) (HSQUIRRELVM vm, SqInt64 num);
@ -100,7 +99,6 @@ extern "C" {
SqEx_LogMessage LogSWrn;
SqEx_LogMessage LogSErr;
SqEx_LogMessage LogSFtl;
SqEx_SqThrow SqThrow;
/*long numbers*/
SqEx_GetSLongValue GetSLongValue;
SqEx_PushSLongObject PushSLongObject;

View File

@ -229,7 +229,6 @@ void InitExports()
g_SqExports.LogSWrn = LogSWrn;
g_SqExports.LogSErr = LogSErr;
g_SqExports.LogSFtl = LogSFtl;
g_SqExports.SqThrow = SqThrow;
/*long numbers*/
g_SqExports.GetSLongValue = SqEx_GetSLongValue;