fileio.h
author miham
Fri, 13 Oct 2006 17:55:56 +0000
changeset 4841 b2cfe4f16d55
parent 4201 3004bdee457d
child 5511 fee376b81447
permissions -rw-r--r--
(svn r6767) WebTranslator2 update to 2006-10-13 19:54:10
american - 5 fixed by WhiteRabbit (5)
brazilian_portuguese - 5 fixed, 8 changed by tucalipe (13)
bulgarian - 136 fixed, 12 changed by groupsky (148)
dutch - 5 fixed by habell (5)
french - 5 fixed by belugas (5)
slovak - 5 fixed by lengyel (5)
/* $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 */