34 void ( *Printf )(
const char *format, ... );
35 void ( *DPrintf )(
const char *format, ... );
36 const char * ( *LV_ConvertString )(
const char *string );
37 cvar_t * ( *Cvar_Get )(
const char *varName,
const char *varValue,
int varFlags );
38 void( *Cvar_Set )(
const char *varName,
const char *varValue );
39 int( *FS_ReadFile )(
const char *qpath,
void **buffer, qboolean quiet );
40 void( *FS_FreeFile )(
void *buffer );
41 size_t( *FS_WriteFile )(
const char *qpath,
const void *buffer,
size_t size );
42 fileHandle_t( *FS_FOpenFileWrite )(
const char *fileName );
43 fileHandle_t( *FS_FOpenFileAppend )(
const char *fileName );
44 fileHandle_t( *FS_FOpenFile )(
const char *fileName );
45 const char *( *FS_PrepFileWrite )(
const char *fileName );
46 size_t( *FS_Write )(
const void *buffer,
size_t len, fileHandle_t fileHandle );
47 size_t( *FS_Read )(
void *buffer,
size_t len, fileHandle_t fileHandle );
48 void( *FS_FCloseFile )( fileHandle_t fileHandle );
49 int( *FS_Tell )( fileHandle_t fileHandle );
50 int( *FS_Seek )( fileHandle_t fileHandle,
long int offset, fsOrigin_t origin );
51 void( *FS_Flush )( fileHandle_t fileHandle );
52 int( *FS_FileNewer )(
const char *source,
const char *destination );
53 void( *FS_CanonicalFilename )(
char *fileName );
54 char **( *FS_ListFiles )(
const char *qpath,
const char *extension, qboolean wantSubs,
int *numFiles );
55 void( *FS_FreeFileList )(
char **list );
56 int( *Milliseconds )( );
57 double( *MillisecondsDbl )( );
58 void( *Error )(
int errortype,
const char *format, ... );
59 void *( *Malloc )(
size_t size );
60 void( *Free )(
void *ptr );
61 int( *Key_StringToKeynum )(
const char *
str );
62 char * ( *Key_KeynumToBindString )(
int keyNum );
63 void( *Key_GetKeysForCommand )(
const char *command,
int *key1,
int *key2 );
64 void( *SendConsoleCommand )(
const char *text );
65 void( *SendServerCommand )(
int client,
const char *format, ... );
66 qboolean( *GlobalAlias_Add )(
const char *alias,
const char *name,
const char *parameters );
67 char * ( *GlobalAlias_FindRandom )(
const char *alias, aliasListNode_t **ret );
68 void( *GlobalAlias_Dump )( );
69 void( *GlobalAlias_Clear )( );
70 void( *SetConfigstring )(
int index,
const char *val );
71 char *( *GetConfigstring )(
int index );
72 void( *AddSvsTimeFixup )(
int *piTime );