From baf5737779467b2f3e55a751b5bd44bff663fd0a Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sun, 27 Oct 2013 00:51:53 -0500 Subject: [PATCH] Remove function prototypes for non-existant Sys_* DLL functions --- code/qcommon/qcommon.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/code/qcommon/qcommon.h b/code/qcommon/qcommon.h index 9583cd9b..414b341b 100644 --- a/code/qcommon/qcommon.h +++ b/code/qcommon/qcommon.h @@ -1063,19 +1063,6 @@ void * QDECL Sys_LoadGameDll( const char *name, intptr_t (QDECL **entryPoint)(in intptr_t (QDECL *systemcalls)(intptr_t, ...) ); void Sys_UnloadDll( void *dllHandle ); -void Sys_UnloadGame( void ); -void *Sys_GetGameAPI( void *parms ); - -void Sys_UnloadCGame( void ); -void *Sys_GetCGameAPI( void ); - -void Sys_UnloadUI( void ); -void *Sys_GetUIAPI( void ); - -//bot libraries -void Sys_UnloadBotLib( void ); -void *Sys_GetBotLibAPI( void *parms ); - char *Sys_GetCurrentUser( void ); void QDECL Sys_Error( const char *error, ...) __attribute__ ((noreturn, format (printf, 1, 2)));