| author | bjarni |
| Wed, 26 Jan 2005 12:42:29 +0000 | |
| changeset 1178 | ce85710f92ff |
| parent 1093 | e8d26c7dc42f |
| child 1198 | 010e5986ed74 |
| permissions | -rw-r--r-- |
| 0 | 1 |
#ifndef FILEIO_H |
2 |
#define FILEIO_H |
|
3 |
||
4 |
void FioSeekTo(uint32 pos, int mode); |
|
5 |
void FioSeekToFile(uint32 pos); |
|
|
1093
e8d26c7dc42f
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents:
0
diff
changeset
|
6 |
uint32 FioGetPos(void); |
|
e8d26c7dc42f
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents:
0
diff
changeset
|
7 |
byte FioReadByte(void); |
|
e8d26c7dc42f
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents:
0
diff
changeset
|
8 |
uint16 FioReadWord(void); |
|
e8d26c7dc42f
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents:
0
diff
changeset
|
9 |
uint32 FioReadDword(void); |
|
e8d26c7dc42f
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
tron
parents:
0
diff
changeset
|
10 |
void FioCloseAll(void); |
| 0 | 11 |
void FioOpenFile(int slot, const char *filename); |
12 |
void FioReadBlock(void *ptr, uint size); |
|
13 |
void FioSkipBytes(int n); |
|
14 |
||
15 |
#endif /* FILEIO_H */ |