]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - sys.h
now parses more of q3 shaders to guess at proper rendering settings for surfaces...
[xonotic/darkplaces.git] / sys.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
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.
8
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.
12
13 See the GNU General Public License for more details.
14
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.
18
19 */
20 // sys.h -- non-portable functions
21
22 #ifndef SYS_H
23 #define SYS_H
24
25
26 //
27 // DLL management
28 //
29
30 // Win32 specific
31 #ifdef WIN32
32 # include <windows.h>
33 typedef HMODULE dllhandle_t;
34
35 // Other platforms
36 #else
37   typedef void* dllhandle_t;
38 #endif
39
40 typedef struct
41 {
42         const char *name;
43         void **funcvariable;
44 }
45 dllfunction_t;
46
47 qboolean Sys_LoadLibrary (const char* dllname, dllhandle_t* handle, const dllfunction_t *fcts);
48 void Sys_UnloadLibrary (dllhandle_t* handle);
49 void* Sys_GetProcAddress (dllhandle_t handle, const char* name);
50
51 void Sys_Print(const char *msg);
52 void Sys_Printf(const char *fmt, ...);
53 // send text to the quake console (and possibly to terminal)
54
55 // called after Com_InitArgv
56 void Sys_Shared_EarlyInit (void);
57 // called after Host_init
58 void Sys_Shared_LateInit (void);
59
60 // returns current timestamp
61 char *Sys_TimeString(const char *timeformat);
62
63 //
64 // system IO interface (these are the sys functions that need to be implemented in a new driver atm)
65 //
66 void Sys_Error (const char *error, ...);
67 // an error will cause the entire program to exit
68
69 void Sys_PrintToTerminal(const char *text);
70 // (may) output text to terminal which launched program
71
72 void Sys_Shutdown (void); //INFO: This is only called by Host_Shutdown so we dont need testing for recursion
73 void Sys_Quit (void);
74
75 double Sys_DoubleTime (void);
76
77 char *Sys_ConsoleInput (void);
78
79 void Sys_Sleep(int milliseconds);
80 // called to yield for a little bit so as
81 // not to hog cpu when paused or debugging
82
83 void Sys_SendKeyEvents (void);
84 // Perform Key_Event () callbacks until the input que is empty
85
86 char *Sys_GetClipboardData (void);
87
88 #endif
89