fileio.h
author miham
Sat, 30 Sep 2006 17:44:22 +0000
changeset 4684 a072f75029a5
parent 4201 3004bdee457d
child 5511 fee376b81447
permissions -rw-r--r--
(svn r6589) WebTranslator2 update to 2006-09-30 19:43:48
czech - 8 fixed by Hadez (8)
dutch - 8 fixed by habell (8)
french - 1 changed by glx (1)
german - 4 fixed by Neonox (4)
/* $Id$ */

#ifndef FILEIO_H
#define FILEIO_H

void FioSeekTo(uint32 pos, int mode);
void FioSeekToFile(uint32 pos);
uint32 FioGetPos(void);
byte FioReadByte(void);
uint16 FioReadWord(void);
uint32 FioReadDword(void);
void FioCloseAll(void);
FILE *FioFOpenFile(const char *filename);
void FioOpenFile(int slot, const char *filename);
void FioReadBlock(void *ptr, uint size);
void FioSkipBytes(int n);
bool FioCheckFileExists(const char *filename);

#endif /* FILEIO_H */