diff options
author | Tim Angus <tim@ngus.net> | 2005-12-28 02:32:43 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2005-12-28 02:32:43 +0000 |
commit | 1dc7e94283f026b17c1e793cbf7542872812ffda (patch) | |
tree | 33de56bca208626f1e7c77853255afc2b8244279 /src/ui/ui_syscalls.c | |
parent | 4b614e63d7da358a8a30e61a89365add79ecde9c (diff) |
* Added master server to source, based on dpmaster
* Removed gametype, fraglimit and dmflags cvars
* Removed CD key authentication stuff
* Implemented a means to save and restore cmd context
* Bumped protocol version up to 69 (same as 68)
* Removed various references to punkbuster
* Maps on create server menu now sorted by name
* Fixed some warnings
Diffstat (limited to 'src/ui/ui_syscalls.c')
-rw-r--r-- | src/ui/ui_syscalls.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ui/ui_syscalls.c b/src/ui/ui_syscalls.c index d0a17b77..3aba4d69 100644 --- a/src/ui/ui_syscalls.c +++ b/src/ui/ui_syscalls.c @@ -316,14 +316,6 @@ int trap_MemoryRemaining( void ) { return syscall( UI_MEMORY_REMAINING ); } -void trap_GetCDKey( char *buf, int buflen ) { - syscall( UI_GET_CDKEY, buf, buflen ); -} - -void trap_SetCDKey( char *buf ) { - syscall( UI_SET_CDKEY, buf ); -} - int trap_PC_AddGlobalDefine( char *define ) { return syscall( UI_PC_ADD_GLOBAL_DEFINE, define ); } @@ -390,10 +382,6 @@ void trap_R_RemapShader( const char *oldShader, const char *newShader, const ch syscall( UI_R_REMAP_SHADER, oldShader, newShader, timeOffset ); } -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 ); } |