diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-19 20:22:04 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-10-19 20:22:04 +0100 |
commit | 48acde84bd58c82eaa3a9838757dfcd05ab4ebf5 (patch) | |
tree | 429dd17294784175cce59b01ba071c728b3eabd1 /NorthstarDedicatedTest/squirrel.h | |
parent | ed7e4fed4ddedaf9d4c181052ca552a0914d57bb (diff) | |
download | NorthstarLauncher-48acde84bd58c82eaa3a9838757dfcd05ab4ebf5.tar.gz NorthstarLauncher-48acde84bd58c82eaa3a9838757dfcd05ab4ebf5.zip |
add reconnecting to local lobby with auth on leave
Diffstat (limited to 'NorthstarDedicatedTest/squirrel.h')
-rw-r--r-- | NorthstarDedicatedTest/squirrel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/squirrel.h b/NorthstarDedicatedTest/squirrel.h index 03622f5d..50b4a19e 100644 --- a/NorthstarDedicatedTest/squirrel.h +++ b/NorthstarDedicatedTest/squirrel.h @@ -12,6 +12,10 @@ typedef char SQChar; typedef SQUnsignedInteger SQBool; typedef SQInteger SQRESULT; +const SQRESULT SQRESULT_ERROR = -1; +const SQRESULT SQRESULT_NULL = 0; +const SQRESULT SQRESULT_NOTNULL = 1; + typedef SQInteger(*SQFunction)(void* sqvm); struct CompileBufferState |