mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
cb86e09029
Add a layout file for Rua docs and create groups for its library functions.
18 lines
387 B
C
18 lines
387 B
C
#ifndef __ruamoko_crudefile_h
|
|
#define __ruamoko_crudefile_h
|
|
|
|
/**
|
|
\defgroup crudefile Crudefile Functions
|
|
\{
|
|
*/
|
|
@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
|