mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-10 17:30:55 +00:00
blarg.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1713 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
ea47716ccc
commit
487865b83e
1 changed files with 7 additions and 6 deletions
|
@ -102,6 +102,13 @@ cvar_t plug_loaddefault = {"plug_loaddefault", "1"};
|
||||||
#include "glquake.h"
|
#include "glquake.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//custom plugin builtins.
|
||||||
|
typedef int (VARGS *Plug_Builtin_t)(void *offset, unsigned int mask, const long *arg);
|
||||||
|
#define PLUG_BIF_DLLONLY 1
|
||||||
|
#define PLUG_BIF_QVMONLY 2
|
||||||
|
|
||||||
|
void Plug_RegisterBuiltin(char *name, Plug_Builtin_t bi, int flags);
|
||||||
|
|
||||||
#include "netinc.h"
|
#include "netinc.h"
|
||||||
|
|
||||||
typedef struct plugin_s {
|
typedef struct plugin_s {
|
||||||
|
@ -138,12 +145,6 @@ void Plug_Client_Close(plugin_t *plug) {}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
//custom plugin builtins.
|
|
||||||
typedef int (VARGS *Plug_Builtin_t)(void *offset, unsigned int mask, const long *arg);
|
|
||||||
void Plug_RegisterBuiltin(char *name, Plug_Builtin_t bi, int flags);
|
|
||||||
#define PLUG_BIF_DLLONLY 1
|
|
||||||
#define PLUG_BIF_QVMONLY 2
|
|
||||||
|
|
||||||
void Plug_Init(void);
|
void Plug_Init(void);
|
||||||
void Plug_Close(plugin_t *plug);
|
void Plug_Close(plugin_t *plug);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue