quakeforge/ruamoko/include/crudefile.h
Jeff Teunissen 4bd37e7b64 Switch to C-style function declarations.
Doxygen hates the QuakeC-style function prototypes we use, so switch to the
C-style prototypes.
2010-12-11 20:31:59 -05:00

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