X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=sys.h;h=42838e319f9b658e4bba3ae6840303e799e34031;hb=6c4d997a497cb5afde74b4bf16f6a9ade5aca37e;hp=278c7982fa8f545e0aacd8b61ae361c821783f8a;hpb=f9d8bc7ea04ff91fcbd90fe50a299b37724b349b;p=xonotic%2Fdarkplaces.git diff --git a/sys.h b/sys.h index 278c7982..42838e31 100644 --- a/sys.h +++ b/sys.h @@ -61,20 +61,20 @@ char *Sys_TimeString(const char *timeformat); // // system IO interface (these are the sys functions that need to be implemented in a new driver atm) // -void Sys_Error (const char *error, ...); +void Sys_Error (const char *error, ...) DP_FUNC_PRINTF(1); // an error will cause the entire program to exit void Sys_PrintToTerminal(const char *text); // (may) output text to terminal which launched program void Sys_Shutdown (void); //INFO: This is only called by Host_Shutdown so we dont need testing for recursion -void Sys_Quit (void); +void Sys_Quit (int returnvalue); double Sys_DoubleTime (void); char *Sys_ConsoleInput (void); -void Sys_Sleep(int milliseconds); +void Sys_Sleep(int microseconds); // called to yield for a little bit so as // not to hog cpu when paused or debugging