author | rubidium |
Thu, 01 Mar 2007 23:37:05 +0000 | |
changeset 6512 | 8625c30bd63d |
parent 6505 | abcb0580d976 |
child 6527 | f584ab6d87f8 |
permissions | -rw-r--r-- |
2186 | 1 |
/* $Id$ */ |
2 |
||
6505
abcb0580d976
(svn r8950) -Cleanup: doxygen changes. Mostly @files missing tags and a few comments style.
belugas
parents:
5726
diff
changeset
|
3 |
/** @file fileio.h Declarations for Standard In/Out file operations*/ |
abcb0580d976
(svn r8950) -Cleanup: doxygen changes. Mostly @files missing tags and a few comments style.
belugas
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 */ |