mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix dedicated.dll compile errors
This commit is contained in:
parent
d0b989be26
commit
bf16fc1a38
@ -10,6 +10,17 @@
|
||||
#include "squirrel/sqinit.h"
|
||||
#include "squirrel/sqscript.h"
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
// Purpose: registers global constant for target context
|
||||
// Input : *v -
|
||||
// *name -
|
||||
// value -
|
||||
//---------------------------------------------------------------------------------
|
||||
SQRESULT Script_RegisterConstant(CSquirrelVM* s, const SQChar* name, SQInteger value)
|
||||
{
|
||||
return v_Script_RegisterConstant(s, name, value);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
// Purpose: registers and exposes code functions to target context
|
||||
// Input : *s -
|
||||
@ -128,17 +139,6 @@ void Script_RegisterUIFunctions(CSquirrelVM* s)
|
||||
Script_RegisterFunction(s, "ShutdownHostGame", "Script_ShutdownHostGame", "Shuts the local host game down", "void", "", &VSquirrel::SHARED::ShutdownHostGame);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
// Purpose: registers global constant for target context
|
||||
// Input : *v -
|
||||
// *name -
|
||||
// value -
|
||||
//---------------------------------------------------------------------------------
|
||||
SQRESULT Script_RegisterConstant(CSquirrelVM* s, const SQChar* name, SQInteger value)
|
||||
{
|
||||
return v_Script_RegisterConstant(s, name, value);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
// Purpose: Initialize all CLIENT/UI global structs and register SDK (CLIENT/UI) script functions
|
||||
// Input : *v -
|
||||
|
Loading…
x
Reference in New Issue
Block a user