diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-06-29 12:32:32 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-06-29 12:32:32 +0000 |
commit | e826e5f176f21cd18b3bbc22887a266835ada57c (patch) | |
tree | d25a84a84f9168b16a77fe4ed8b169c9611bbb02 /source/com_public.h | |
parent | 491f1c100e860c45a5d2aa358d58f777cd1cf895 (diff) |
Added client and server side support for 32-bit solids.
New R1Q2 and Q2PRO minor protocol versions, 1905 and 1014.
Use environment variables for game and server features negotiation.
Relax restrictions on quake paths when searching inside pak files.
Made OSS subsystem cvar names consistent with core sound system conventions.
Misc latched cvar handling changes.
Diffstat (limited to 'source/com_public.h')
-rw-r--r-- | source/com_public.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source/com_public.h b/source/com_public.h index cfdd492..8f79815 100644 --- a/source/com_public.h +++ b/source/com_public.h @@ -129,12 +129,15 @@ CVAR #define CVAR_CHEAT ( 1 << 5 ) #define CVAR_PRIVATE ( 1 << 6 ) #define CVAR_ROM ( 1 << 7 ) -#define CVAR_LATCHED ( 1 << 8 ) #define CVAR_CUSTOM ( 1 << 9 ) #define CVAR_VOLATILE ( 1 << 10 ) #define CVAR_GAME ( 1 << 11 ) +#define CVAR_FILES ( 1 << 13 ) +#define CVAR_REFRESH ( 1 << 14 ) +#define CVAR_SOUND ( 1 << 15 ) #define CVAR_INFOMASK (CVAR_USERINFO|CVAR_SERVERINFO) +#define CVAR_MODIFYMASK (CVAR_INFOMASK|CVAR_FILES|CVAR_REFRESH|CVAR_SOUND) #define CVAR_EXTENDED_MASK (~31) typedef struct cvarAPI_s { @@ -246,8 +249,6 @@ typedef struct { typedef struct sysAPI_s { unsigned (*Milliseconds)( void ); - char *(*GetClipboardData)( void ); - void (*SetClipboardData)( const char *data ); void (*HunkBegin)( mempool_t *pool, size_t maxsize ); void *(*HunkAlloc)( mempool_t *pool, size_t size ); void (*HunkEnd)( mempool_t *pool ); @@ -265,7 +266,7 @@ MODULES */ // if api_version is different, the dll cannot be used -#define MODULES_APIVERSION 317 +#define MODULES_APIVERSION 318 typedef enum moduleQuery_e { MQ_GETINFO, |