2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // sys.h -- non-portable functions
25 extern cvar_t sys_usenoclockbutbenchmark;
34 typedef HMODULE dllhandle_t;
38 typedef void* dllhandle_t;
41 typedef struct dllfunction_s
49 * \param dllnames a NULL terminated array of possible names for the DLL you want to load.
53 qboolean Sys_LoadLibrary (const char** dllnames, dllhandle_t* handle, const dllfunction_t *fcts);
54 void Sys_UnloadLibrary (dllhandle_t* handle);
55 void* Sys_GetProcAddress (dllhandle_t handle, const char* name);
57 /// called early in Host_Init
58 void Sys_InitConsole (void);
59 /// called after command system is initialized but before first Con_Print
60 void Sys_Init_Commands (void);
63 /// \returns current timestamp
64 char *Sys_TimeString(const char *timeformat);
67 // system IO interface (these are the sys functions that need to be implemented in a new driver atm)
70 /// an error will cause the entire program to exit
71 void Sys_Error (const char *error, ...) DP_FUNC_PRINTF(1) DP_FUNC_NORETURN;
73 /// (may) output text to terminal which launched program
74 void Sys_PrintToTerminal(const char *text);
75 void Sys_PrintfToTerminal(const char *fmt, ...);
77 /// INFO: This is only called by Host_Shutdown so we dont need testing for recursion
78 void Sys_Shutdown (void);
79 void Sys_Quit (int returnvalue);
81 /*! on some build/platform combinations (such as Linux gcc with the -pg
82 * profiling option) this can turn on/off profiling, used primarily to limit
83 * profiling to certain areas of the code, such as ingame performance without
84 * regard for loading/shutdown performance (-profilegameonly on commandline)
86 void Sys_AllowProfiling (qboolean enable);
88 typedef struct sys_cleantime_s
90 double dirtytime; // last value gotten from Sys_DirtyTime()
91 double cleantime; // sanitized linearly increasing time since app start
95 double Sys_DirtyTime(void);
97 void Sys_ProvideSelfFD (void);
99 char *Sys_ConsoleInput (void);
101 /// called to yield for a little bit so as not to hog cpu when paused or debugging
102 void Sys_Sleep(int microseconds);
104 /// Perform Key_Event () callbacks until the input que is empty
105 void Sys_SendKeyEvents (void);
107 char *Sys_GetClipboardData (void);
109 extern qboolean sys_supportsdlgetticks;
110 unsigned int Sys_SDL_GetTicks (void); // wrapper to call SDL_GetTicks
111 void Sys_SDL_Delay (unsigned int milliseconds); // wrapper to call SDL_Delay
113 /// called to set process priority for dedicated servers
114 void Sys_InitProcessNice (void);
115 void Sys_MakeProcessNice (void);
116 void Sys_MakeProcessMean (void);