author | KUDr |
Sat, 10 Mar 2007 04:52:01 +0000 | |
branch | cpp_gui |
changeset 6294 | 6c74bf9cc5a4 |
parent 6285 | 187e3ef04cc9 |
child 6298 | c30fe89622df |
permissions | -rw-r--r-- |
2186 | 1 |
/* $Id$ */ |
2 |
||
6285
187e3ef04cc9
(svn r9004) [cpp_gui] -Sync with trunk (r8900..r9003)
KUDr
parents:
5726
diff
changeset
|
3 |
/** @file fileio.h Declarations for Standard In/Out file operations */ |
187e3ef04cc9
(svn r9004) [cpp_gui] -Sync with trunk (r8900..r9003)
KUDr
parents:
5726
diff
changeset
|
4 |
|
0 | 5 |
#ifndef FILEIO_H |
6 |
#define FILEIO_H |
|
7 |
||
8 |
void FioSeekTo(uint32 pos, int mode); |
|
9 |
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
|
10 |
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
|
11 |
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
|
12 |
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
|
13 |
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
|
14 |
void FioCloseAll(void); |
2736
1ea068235989
(svn r3281) -Feature: [OSX] added native cocoa sound and video drivers (egladil)
bjarni
parents:
2186
diff
changeset
|
15 |
FILE *FioFOpenFile(const char *filename); |
0 | 16 |
void FioOpenFile(int slot, const char *filename); |
17 |
void FioReadBlock(void *ptr, uint size); |
|
18 |
void FioSkipBytes(int n); |
|
4201
3004bdee457d
(svn r5685) - Codechange: s/FiosCheckFileExists/FioCheckFileExists/ to unify the naming of these functions.
Darkvater
parents:
2736
diff
changeset
|
19 |
bool FioCheckFileExists(const char *filename); |
0 | 20 |
|
21 |
#endif /* FILEIO_H */ |