mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
10 lines
441 B
R
10 lines
441 B
R
#include "qfs.h"
|
|
|
|
QFile (string path, string mode) QFS_Open = #0;
|
|
QFile (string path, integer zip) QFS_WOpen = #0;
|
|
integer (string old, string new) QFS_Rename = #0;
|
|
(void []) (string filename) QFS_LoadFile = #0;
|
|
QFile (string filename) QFS_OpenFile = #0;
|
|
integer (string filename, void [] buf, integer count) QFS_WriteFile = #0;
|
|
QFSlist (string path, string ext, integer strip) QFS_Filelist = #0;
|
|
void (QFSlist list) QFS_FilelistFree = #0;
|