aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/squirrel/squirrel.h
diff options
context:
space:
mode:
Diffstat (limited to 'NorthstarDLL/squirrel/squirrel.h')
-rw-r--r--NorthstarDLL/squirrel/squirrel.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/NorthstarDLL/squirrel/squirrel.h b/NorthstarDLL/squirrel/squirrel.h
index 3d18d6c1..427eb03c 100644
--- a/NorthstarDLL/squirrel/squirrel.h
+++ b/NorthstarDLL/squirrel/squirrel.h
@@ -6,6 +6,19 @@
#include "plugins/plugin_abi.h"
#include "mods/modmanager.h"
+/*
+ definitions from hell
+ required to function
+*/
+
+template <ScriptContext context, typename T> inline void SqRecurseArgs(FunctionVector& v, T& arg);
+
+template <ScriptContext context, typename T, typename... Args> inline void SqRecurseArgs(FunctionVector& v, T& arg, Args... args);
+
+/*
+ sanity below
+*/
+
// stolen from ttf2sdk: sqvm types
typedef float SQFloat;
typedef long SQInteger;
@@ -280,7 +293,7 @@ class SquirrelManagerBase
template <typename T> inline SQBool getthisentity(HSquirrelVM* sqvm, T* ppEntity)
{
- return __sq_getentity(sqvm, (void**)ppEntity);
+ return __sq_getthisentity(sqvm, (void**)ppEntity);
}
template <typename T> inline T* getentity(HSquirrelVM* sqvm, SQInteger iStackPos)