mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 09:57:14 +01:00
Remove the old SqThrow function from the module API.
This commit is contained in:
parent
4c66cfa49d
commit
53834fe1d9
@ -63,7 +63,6 @@ extern "C" {
|
|||||||
typedef HSQUIRRELVM (*SqEx_GetSquirrelVM) (void);
|
typedef HSQUIRRELVM (*SqEx_GetSquirrelVM) (void);
|
||||||
/*logging utilities*/
|
/*logging utilities*/
|
||||||
typedef void (*SqEx_LogMessage) (const SQChar * fmt, ...);
|
typedef void (*SqEx_LogMessage) (const SQChar * fmt, ...);
|
||||||
typedef void (*SqEx_SqThrow) (const SQChar * fmt, ...);
|
|
||||||
/*long numbers*/
|
/*long numbers*/
|
||||||
typedef SQRESULT (*SqEx_GetSLongValue) (HSQUIRRELVM vm, SQInteger idx, SqInt64 * num);
|
typedef SQRESULT (*SqEx_GetSLongValue) (HSQUIRRELVM vm, SQInteger idx, SqInt64 * num);
|
||||||
typedef void (*SqEx_PushSLongObject) (HSQUIRRELVM vm, SqInt64 num);
|
typedef void (*SqEx_PushSLongObject) (HSQUIRRELVM vm, SqInt64 num);
|
||||||
@ -100,7 +99,6 @@ extern "C" {
|
|||||||
SqEx_LogMessage LogSWrn;
|
SqEx_LogMessage LogSWrn;
|
||||||
SqEx_LogMessage LogSErr;
|
SqEx_LogMessage LogSErr;
|
||||||
SqEx_LogMessage LogSFtl;
|
SqEx_LogMessage LogSFtl;
|
||||||
SqEx_SqThrow SqThrow;
|
|
||||||
/*long numbers*/
|
/*long numbers*/
|
||||||
SqEx_GetSLongValue GetSLongValue;
|
SqEx_GetSLongValue GetSLongValue;
|
||||||
SqEx_PushSLongObject PushSLongObject;
|
SqEx_PushSLongObject PushSLongObject;
|
||||||
|
@ -229,7 +229,6 @@ void InitExports()
|
|||||||
g_SqExports.LogSWrn = LogSWrn;
|
g_SqExports.LogSWrn = LogSWrn;
|
||||||
g_SqExports.LogSErr = LogSErr;
|
g_SqExports.LogSErr = LogSErr;
|
||||||
g_SqExports.LogSFtl = LogSFtl;
|
g_SqExports.LogSFtl = LogSFtl;
|
||||||
g_SqExports.SqThrow = SqThrow;
|
|
||||||
|
|
||||||
/*long numbers*/
|
/*long numbers*/
|
||||||
g_SqExports.GetSLongValue = SqEx_GetSLongValue;
|
g_SqExports.GetSLongValue = SqEx_GetSLongValue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user