fileio.h
author miham
Mon, 11 Sep 2006 16:24:58 +0000
changeset 4589 71ecf4d2290c
parent 4201 5c1b9b3043b1
permissions -rw-r--r--
(svn r6439) WebTranslator2 update to 2006-09-11 18:24:37
catalan - 102 fixed, 10 changed by arnaullv (112)
/* $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 */