2004-04-20 23:01:54 +00:00
|
|
|
#include "qfs.h"
|
|
|
|
|
2011-02-13 12:25:36 +00:00
|
|
|
QFile QFS_Open (string path, string mode) = #0;
|
2011-03-25 07:46:32 +00:00
|
|
|
QFile QFS_WOpen (string path, int zip) = #0;
|
|
|
|
int QFS_Rename (string old, string new) = #0;
|
2011-02-13 12:25:36 +00:00
|
|
|
void *QFS_LoadFile (string filename) = #0;
|
|
|
|
QFile QFS_OpenFile (string filename) = #0;
|
2011-03-25 07:46:32 +00:00
|
|
|
int QFS_WriteFile (string filename, void *buf, int count) = #0;
|
|
|
|
QFSlist QFS_Filelist (string path, string ext, int strip) = #0;
|
2011-02-13 12:25:36 +00:00
|
|
|
void QFS_FilelistFree (QFSlist list) = #0;
|
2020-02-26 04:45:14 +00:00
|
|
|
string QFS_GetDirectory (void) = #0;
|