Fix dedicated.dll compile errors

This commit is contained in:
Kawe Mazidjatari 2022-09-22 21:20:14 +02:00
parent d0b989be26
commit bf16fc1a38

View File

@ -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 -