mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Guard 'IsValidPersonaName' out for client.dll
Don't compile 'IsValidPersonaName' for client.dll.
This commit is contained in:
parent
715300dd82
commit
2fb54ad8c4
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user