2023-07-28 21:45:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern const char* GS_GetGameKey(unsigned int index);
|
|
|
|
extern unsigned int GS_GetGameID(unsigned int index);
|
|
|
|
extern const char* GS_GetGameName(unsigned int index);
|
|
|
|
extern const char* GS_GetCurrentGameKey();
|
|
|
|
extern unsigned int GS_GetCurrentGameID();
|
|
|
|
extern const char* GS_GetCurrentGameName();
|
|
|
|
|
2023-08-24 23:19:21 +02:00
|
|
|
void SV_CreateGamespyChallenge(char* challenge);
|
|
|
|
void SV_GamespyAuthorize(netadr_t from, const char* response);
|
|
|
|
|
2023-07-28 21:45:07 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|