X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=sys.h;h=278c7982fa8f545e0aacd8b61ae361c821783f8a;hb=0d69d44e91a3d878e74e6ae7640792bfde38fc68;hp=4a992f6df0c5876829bae7ab4fa3d933f9fc6e01;hpb=5f287be4a74858793ea36ca8144e2b1720d99d9f;p=xonotic%2Fdarkplaces.git diff --git a/sys.h b/sys.h index 4a992f6d..278c7982 100644 --- a/sys.h +++ b/sys.h @@ -37,7 +37,7 @@ typedef HMODULE dllhandle_t; typedef void* dllhandle_t; #endif -typedef struct +typedef struct dllfunction_s { const char *name; void **funcvariable; @@ -49,10 +49,11 @@ qboolean Sys_LoadLibrary (const char** dllnames, dllhandle_t* handle, const dllf void Sys_UnloadLibrary (dllhandle_t* handle); void* Sys_GetProcAddress (dllhandle_t handle, const char* name); -// called after Com_InitArgv -void Sys_Shared_EarlyInit (void); -// called after Host_init -void Sys_Shared_LateInit (void); +// called early in Host_Init +void Sys_InitConsole (void); +// called after command system is initialized but before first Con_Print +void Sys_Init_Commands (void); + // returns current timestamp char *Sys_TimeString(const char *timeformat);