2001-02-21 19:35:06 +00:00
|
|
|
/*
|
|
|
|
sys.h
|
|
|
|
|
|
|
|
non-portable functions
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __sys_h
|
|
|
|
#define __sys_h
|
|
|
|
|
2001-07-05 04:59:43 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2001-03-27 23:36:02 +00:00
|
|
|
#include "QF/gcc_attr.h"
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2001-04-10 06:55:28 +00:00
|
|
|
extern struct cvar_s *sys_nostdout;
|
|
|
|
|
2001-07-10 15:59:25 +00:00
|
|
|
extern const char sys_char_map[256];
|
|
|
|
|
2001-03-30 23:24:57 +00:00
|
|
|
int Sys_FileTime (const char *path);
|
|
|
|
void Sys_mkdir (const char *path);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
2001-07-05 04:59:43 +00:00
|
|
|
typedef void (*sys_printf_t) (const char *fmt, va_list args);
|
|
|
|
|
|
|
|
void Sys_SetPrintf (sys_printf_t func);
|
|
|
|
|
2001-07-05 00:12:43 +00:00
|
|
|
void Sys_Printf (const char *fmt, ...) __attribute__((format(printf,1,2)));
|
2001-03-30 23:24:57 +00:00
|
|
|
void Sys_Error (const char *error, ...) __attribute__((format(printf,1,2)));
|
2001-02-21 19:35:06 +00:00
|
|
|
void Sys_Quit (void);
|
|
|
|
double Sys_DoubleTime (void);
|
|
|
|
|
2001-07-15 07:04:17 +00:00
|
|
|
const char *Sys_ConsoleInput (void);
|
2001-02-21 19:35:06 +00:00
|
|
|
|
|
|
|
void Sys_Sleep (void);
|
|
|
|
// called to yield for a little bit so as
|
|
|
|
// not to hog cpu when paused or debugging
|
|
|
|
|
|
|
|
void Sys_LowFPPrecision (void);
|
|
|
|
void Sys_HighFPPrecision (void);
|
|
|
|
void Sys_SetFPCW (void);
|
|
|
|
|
|
|
|
// send text to the console
|
|
|
|
|
|
|
|
void Sys_Init (void);
|
|
|
|
void Sys_Init_Cvars (void);
|
|
|
|
|
2001-03-30 23:24:57 +00:00
|
|
|
//
|
|
|
|
// memory protection
|
|
|
|
//
|
|
|
|
void Sys_MakeCodeWriteable (unsigned long startaddr, unsigned long length);
|
|
|
|
|
|
|
|
//
|
|
|
|
// system IO
|
|
|
|
//
|
2001-07-15 07:04:17 +00:00
|
|
|
void Sys_DebugLog(const char *file, const char *fmt, ...) __attribute__((format(printf,2,3)));
|
2001-03-30 23:24:57 +00:00
|
|
|
|
2001-02-21 19:35:06 +00:00
|
|
|
#endif // __sys_h
|