X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=sys.h;h=4b5372ea931c47a803dade47f74953f5ed497dd4;hp=0df1b9b66dbc4ef54e4d55b3867586a1357bae25;hb=d7df76f224c0d0ebb8a3c7bc0c3125ba638206e6;hpb=d7035ef4229a2462ad59a67160494593fbd8f2e0 diff --git a/sys.h b/sys.h index 0df1b9b6..4b5372ea 100644 --- a/sys.h +++ b/sys.h @@ -36,13 +36,6 @@ int Sys_FileWrite (int handle, void *data, int count); int Sys_FileTime (char *path); void Sys_mkdir (char *path); -// -// memory protection -// -#if NOTUSED -void Sys_MakeCodeWriteable (unsigned long startaddr, unsigned long length); -#endif - // // system IO // @@ -56,7 +49,7 @@ void Sys_Printf (char *fmt, ...); void Sys_Quit (void); -double Sys_FloatTime (void); +double Sys_DoubleTime (void); char *Sys_ConsoleInput (void); @@ -67,3 +60,7 @@ void Sys_Sleep (void); void Sys_SendKeyEvents (void); // Perform Key_Event () callbacks until the input que is empty +// called after Com_InitArgv +void Sys_Shared_EarlyInit (void); +// called after Host_init +void Sys_Shared_LateInit (void);