diff options
author | Tim Angus <tim@ngus.net> | 2002-10-22 19:42:01 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2002-10-22 19:42:01 +0000 |
commit | d5364cf01a62c0d1528d318efdce20de68d71354 (patch) | |
tree | 0479236550e9f685a7bf364991ce33fb6ca03927 /src/ui/ui_syscalls.c | |
parent | 82a34b02692244390087884e67c2b9a2423f7e54 (diff) |
* 1.32 point release update
Diffstat (limited to 'src/ui/ui_syscalls.c')
-rw-r--r-- | src/ui/ui_syscalls.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ui/ui_syscalls.c b/src/ui/ui_syscalls.c index 2cb5edc8..294d30f0 100644 --- a/src/ui/ui_syscalls.c +++ b/src/ui/ui_syscalls.c @@ -113,6 +113,10 @@ int trap_FS_GetFileList( const char *path, const char *extension, char *listbuf return syscall( UI_FS_GETFILELIST, path, extension, listbuf, bufsize ); } +int trap_FS_Seek( fileHandle_t f, long offset, int origin ) { + return syscall( UI_FS_SEEK, f, offset, origin ); +} + qhandle_t trap_R_RegisterModel( const char *name ) { return syscall( UI_R_REGISTERMODEL, name ); } @@ -383,4 +387,6 @@ qboolean trap_VerifyCDKey( const char *key, const char *chksum) { return syscall( UI_VERIFY_CDKEY, key, chksum); } - +void trap_SetPbClStatus( int status ) { + syscall( UI_SET_PBCLSTATUS, status ); +} |