| ![[BACK]](/cvs/cvsweb/icons/back.gif) Return to textfile.h CVS log ![[TXT]](/cvs/cvsweb/icons/text.gif) | ![[DIR]](/cvs/cvsweb/icons/dir.gif) Up to  [RetroPC.NET] / xmil / common | 
fix...
typedef struct {
	long	fh;
	long	fhpos;
	UINT	buffersize;
	UINT	flag;
	UINT	pos;
	UINT	remain;
} _TEXTFILE, *TEXTFILEH;
#ifdef __cplusplus
extern "C" {
#endif
TEXTFILEH textfile_open(const OEMCHAR *filename, UINT buffersize);
BOOL textfile_read(TEXTFILEH fh, char *buffer, UINT size);
void textfile_close(TEXTFILEH fh);
#ifdef __cplusplus
}
#endif