mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
4bd37e7b64
Doxygen hates the QuakeC-style function prototypes we use, so switch to the C-style prototypes.
11 lines
324 B
C
11 lines
324 B
C
#ifndef __ruamoko_crudefile_h
|
|
#define __ruamoko_crudefile_h
|
|
|
|
@extern float cfopen (string path, string mode);
|
|
@extern void cfclose (float desc);
|
|
@extern string cfread (float desc);
|
|
@extern float cfwrite (float desc, string buf);
|
|
@extern float cfeof (float desc);
|
|
@extern float cfquota (void);
|
|
|
|
#endif//__ruamoko_crudefile_h
|