#include "../qcommon/qcommon.h"
#include "winquake.h"
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <direct.h>
#include <io.h>
#include <conio.h>
Go to the source code of this file.
Macros | |
#define | VIRTUAL_ALLOC |
Functions | |
void * | Hunk_Begin (int maxsize) |
void * | Hunk_Alloc (int size) |
int | Hunk_End (void) |
void | Hunk_Free (void *base) |
int | Sys_Milliseconds (void) |
void | Sys_Mkdir (char *path) |
static qboolean | CompareAttributes (unsigned found, unsigned musthave, unsigned canthave) |
char * | Sys_FindFirst (char *path, unsigned musthave, unsigned canthave) |
char * | Sys_FindNext (unsigned musthave, unsigned canthave) |
void | Sys_FindClose (void) |
Variables | |
int | hunkcount |
byte * | membase |
int | hunkmaxsize |
int | cursize |
int | curtime |
char | findbase [MAX_OSPATH] |
char | findpath [MAX_OSPATH] |
intptr_t | findhandle |
|
static |
Definition at line 57 of file q_shwin.c.
Referenced by GL_BuildPolygonFromSurface(), Mod_LoadAliasModel(), Mod_LoadEdges(), Mod_LoadFaces(), Mod_LoadLeafs(), Mod_LoadLighting(), Mod_LoadMarksurfaces(), Mod_LoadNodes(), Mod_LoadPlanes(), Mod_LoadRighting(), Mod_LoadSpriteModel(), Mod_LoadSubmodels(), Mod_LoadSurfedges(), Mod_LoadTexinfo(), Mod_LoadVertexes(), Mod_LoadVisibility(), SubdividePolygon(), and Vk_BuildPolygonFromSurface().
Definition at line 206 of file q_shwin.c.
Referenced by FS_ExecAutoexec(), FS_ListFiles(), PlayerConfig_ScanDirectories(), SV_CopySaveGame(), and SV_WipeSavegame().
char* Sys_FindFirst | ( | char * | path, |
unsigned | musthave, | ||
unsigned | canthave | ||
) |
Definition at line 173 of file q_shwin.c.
Referenced by FS_ExecAutoexec(), FS_ListFiles(), PlayerConfig_ScanDirectories(), SV_CopySaveGame(), and SV_WipeSavegame().
char* Sys_FindNext | ( | unsigned | musthave, |
unsigned | canthave | ||
) |
Definition at line 191 of file q_shwin.c.
Referenced by FS_ListFiles(), SV_CopySaveGame(), and SV_WipeSavegame().
Definition at line 120 of file q_shwin.c.
Referenced by CL_Disconnect(), CL_Frame(), CL_InitLocal(), Field_Draw(), KeyCursorDrawFunc(), Menu_Draw(), Netchan_Init(), Qcommon_Frame(), R_EdgeDrawing(), R_PrintDSpeeds(), R_PrintTimes(), R_RenderFrame(), SCR_BeginLoadingPlaque(), SCR_PlayCinematic(), SCR_TimeRefresh_f(), SCR_UpdateScreen(), SV_RunGameFrame(), V_RenderView(), and WinMain().
void Sys_Mkdir | ( | char * | path | ) |
Definition at line 135 of file q_shwin.c.
Referenced by FS_CreatePath(), GL_ScreenShot_f(), R_ScreenShot_f(), and Vk_ScreenShot_f().
int cursize |
Definition at line 37 of file q_shwin.c.
Referenced by Hunk_Alloc(), Hunk_Begin(), and Hunk_End().
int curtime |
Definition at line 119 of file q_shwin.c.
Referenced by CL_Frame(), CL_SendCmd(), Netchan_Process(), Netchan_Setup(), Netchan_Transmit(), SV_SendClientMessages(), SVC_GetChallenge(), and Sys_Milliseconds().
char findbase[MAX_OSPATH] |
Definition at line 142 of file q_shwin.c.
Referenced by Sys_FindFirst(), and Sys_FindNext().
intptr_t findhandle |
Definition at line 144 of file q_shwin.c.
Referenced by Sys_FindClose(), Sys_FindFirst(), and Sys_FindNext().
char findpath[MAX_OSPATH] |
Definition at line 143 of file q_shwin.c.
Referenced by Sys_FindFirst(), and Sys_FindNext().
int hunkcount |
Definition at line 32 of file q_shwin.c.
Referenced by Hunk_End(), and Hunk_Free().
int hunkmaxsize |
Definition at line 36 of file q_shwin.c.
Referenced by Hunk_Alloc(), and Hunk_Begin().
byte* membase |
Definition at line 35 of file q_shwin.c.
Referenced by Hunk_Alloc(), Hunk_Begin(), and Hunk_End().