Added Quake filesystem access.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1629 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
64444d7479
commit
79fce55806
2 changed files with 25 additions and 0 deletions
|
@ -95,6 +95,11 @@ EBUILTIN(void, Draw_Colour3f, (float r, float g, float b));
|
|||
EBUILTIN(void, Draw_Colour4f, (float r, float g, float b, float a));
|
||||
EBUILTIN(void, SCR_CenterPrint, (char *s));
|
||||
|
||||
EBUILTIN(int, FS_Open, (char *name, int *handle, int mode));
|
||||
EBUILTIN(void, FS_Close, (int handle));
|
||||
EBUILTIN(void, FS_Write, (int handle, void *data, int len));
|
||||
EBUILTIN(void, FS_Read, (int handle, void *data, int len));
|
||||
|
||||
EBUILTIN(int, Net_TCPConnect, (char *ip, int port));
|
||||
EBUILTIN(int, Net_TCPListen, (char *ip, int port, int maxcount));
|
||||
EBUILTIN(int, Net_Accept, (int socket, char *address, int addresssize));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue