Guard 'IsValidPersonaName' out for client.dll

Don't compile 'IsValidPersonaName' for client.dll.
This commit is contained in:
Kawe Mazidjatari 2023-04-01 22:58:43 +02:00
parent 715300dd82
commit 2fb54ad8c4
2 changed files with 4 additions and 0 deletions

View File

@ -34,6 +34,7 @@ bool IsOriginInitialized()
return false;
}
#ifndef CLIENT_DLL
//-----------------------------------------------------------------------------
// Purpose: validates if client's persona name meets EA's criteria
// Input : *pszName -
@ -58,3 +59,4 @@ bool IsValidPersonaName(const char* pszName)
size_t pos = strspn(pszName, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_");
return pszName[pos] == '\0';
}
#endif // !CLIENT_DLL

View File

@ -23,7 +23,9 @@ inline bool* g_EbisuProfileInit = nullptr;
///////////////////////////////////////////////////////////////////////////////
void HEbisuSDK_Init();
bool IsOriginInitialized();
#ifndef CLIENT_DLL
bool IsValidPersonaName(const char* pszName);
#endif // !CLIENT_DLL
///////////////////////////////////////////////////////////////////////////////
class VEbisuSDK : public IDetour