]> icculus.org git repositories - divverent/darkplaces.git/blob - sys.h
Fixed major bug in time wrap code, would have not advanced clock at all after wrap...
[divverent/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 // file IO
27 //
28
29 // returns the file size
30 // return -1 if file is not present
31 // the file should be in BINARY mode for stupid OSs that care
32 int Sys_FileOpenRead (char *path, int *hndl);
33
34 int Sys_FileOpenWrite (char *path);
35 void Sys_FileClose (int handle);
36 void Sys_FileSeek (int handle, int position);
37 int Sys_FileRead (int handle, void *dest, int count);
38 int Sys_FileWrite (int handle, void *data, int count);
39 int     Sys_FileTime (char *path);
40 void Sys_mkdir (char *path);
41
42 //
43 // system IO
44 //
45 void Sys_DebugLog(char *file, char *fmt, ...);
46
47 void Sys_Error (char *error, ...);
48 // an error will cause the entire program to exit
49
50 void Sys_Printf (char *fmt, ...);
51 // send text to the console
52
53 void Sys_Quit (void);
54
55 double Sys_DoubleTime (void);
56
57 char *Sys_ConsoleInput (void);
58
59 void Sys_Sleep (void);
60 // called to yield for a little bit so as
61 // not to hog cpu when paused or debugging
62
63 void Sys_SendKeyEvents (void);
64 // Perform Key_Event () callbacks until the input que is empty
65
66 // called after Com_InitArgv
67 void Sys_Shared_EarlyInit (void);
68 // called after Host_init
69 void Sys_Shared_LateInit (void);
70
71 #endif
72