mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
045e52cf14
protection macros consistent
11 lines
320 B
C
11 lines
320 B
C
#ifndef __ruamoko_crudefile_h
|
|
#define __ruamoko_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//__ruamoko_crudefile_h
|