mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
a12fa85506
stringh: I'm not really that keen on those interfaces and I'ld like to see them go away) and create libcsqc for most of it (key goes into gui)
11 lines
261 B
C
11 lines
261 B
C
#ifndef __ruamoko_file_h
|
|
#define __ruamoko_file_h
|
|
|
|
struct _file_t = {};
|
|
typedef _file_t [] file_t;
|
|
|
|
@extern file_t (string path, string mode) File_Open;
|
|
@extern void (file_t file) File_Close;
|
|
@extern string (file_t file) File_GetLine;
|
|
|
|
#endif//__ruamoko_file_h
|