Some defines for clientsdk compilation.

This commit is contained in:
PixieCore 2022-04-27 16:48:18 +02:00
parent 867072e814
commit a874d086cb
2 changed files with 5 additions and 1 deletions

View File

@ -112,7 +112,9 @@ class HOpcodes : public IDetour
std::cout << "| FUN: Host_Init_2 : 0x" << std::hex << std::uppercase << gHost_Init_2.GetPtr() << std::setw(nPad) << " |" << std::endl;
std::cout << "| FUN: Host_Disconnect : 0x" << std::hex << std::uppercase << Host_Disconnect.GetPtr() << std::setw(nPad) << " |" << std::endl;
std::cout << "+----------------------------------------------------------------+" << std::endl;
std::cout << "| FUN: Server_S2C_CONNECT_1 : 0x" << std::hex << std::uppercase << Server_S2C_CONNECT_1.GetPtr() << std::setw(nPad) << " |" << std::endl;
#ifndef CLIENT_DLL
std::cout << "| FUN: Server_S2C_CONNECT_1 : 0x" << std::hex << std::uppercase << Server_S2C_CONNECT_1.GetPtr() << std::setw(nPad) << " |" << std::endl;
#endif // !CLIENT_DLL
std::cout << "+----------------------------------------------------------------+" << std::endl;
std::cout << "| FUN: UpdateMaterialSystemConfig : 0x" << std::hex << std::uppercase << UpdateMaterialSystemConfig.GetPtr() << std::setw(nPad) << " |" << std::endl;
std::cout << "| FUN: UpdateCurrentVideoConfig : 0x" << std::hex << std::uppercase << UpdateCurrentVideoConfig.GetPtr() << std::setw(nPad) << " |" << std::endl;

View File

@ -273,6 +273,7 @@ SQRESULT HSQVM_RegisterFunction(HSQUIRRELVM v, const SQChar* szName, const SQCha
return SQVM_RegisterFunc(v, sqFunc, 1);
}
#ifndef CLIENT_DLL
//---------------------------------------------------------------------------------
// Purpose: registers script functions in SERVER context
// Input : *sqvm -
@ -284,6 +285,7 @@ void SQVM_RegisterServerScriptFunctions(HSQUIRRELVM v)
HSQVM_RegisterFunction(v, "GetNumHumanPlayers", "Gets the number of human players on the server", "int", "", &VSquirrel::SERVER::GetNumHumanPlayers);
HSQVM_RegisterFunction(v, "GetNumFakeClients", "Gets the number of bot players on the server", "int", "", &VSquirrel::SERVER::GetNumFakeClients);
}
#endif // !CLIENT_DLL
#ifndef DEDICATED
//---------------------------------------------------------------------------------