mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
12 lines
296 B
C
12 lines
296 B
C
|
#ifndef __crudefile_h
|
||
|
#define __crudefile_h
|
||
|
|
||
|
@extern float (string path, string mode) cfopen;
|
||
|
@extern void (float desc) cfclose;
|
||
|
@extern string (float desc) cfread;
|
||
|
@extern float (float desc, string buf) cfwrite;
|
||
|
@extern float (float desc) cfeof;
|
||
|
@extern float () cfquota;
|
||
|
|
||
|
#endif//__crudefile_h
|