summaryrefslogtreecommitdiffhomepage
path: root/src/engineapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engineapi.h')
-rw-r--r--src/engineapi.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/engineapi.h b/src/engineapi.h
index e95e282..44366f5 100644
--- a/src/engineapi.h
+++ b/src/engineapi.h
@@ -137,8 +137,7 @@ extern void *globalvars;
extern void *inputsystem, *vgui;
// XXX: not exactly engine *API* but not curently clear where else to put this
-struct CPlugin {
- char description[128];
+struct CPlugin_common {
bool paused;
void *theplugin; // our own "this" pointer (or whichever other plugin it is)
int ifacever;
@@ -146,6 +145,16 @@ struct CPlugin {
// because CServerPlugin::Load() erroneously shadows this field with a local
void *module;
};
+struct CPlugin {
+ char description[128];
+ union {
+ struct CPlugin_common v1;
+ struct {
+ char basename[128]; // WHY VALVE WHYYYYYYY!!!!
+ struct CPlugin_common common;
+ } v2;
+ };
+};
struct CServerPlugin /* : IServerPluginHelpers */ {
void **vtable;
struct CUtlVector plugins;