diff options
Diffstat (limited to 'api/pluginapi.h')
-rw-r--r-- | api/pluginapi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/api/pluginapi.h b/api/pluginapi.h index 91c8d47..432b2d2 100644 --- a/api/pluginapi.h +++ b/api/pluginapi.h @@ -3,11 +3,13 @@ #define PLUGIN_MAKE_VERSION(a,b,c,d) (((((DWORD)(a))&0xFF)<<24)|((((DWORD)(b))&0xFF)<<16)|((((DWORD)(c))&0xFF)<<8)|(((DWORD)(d))&0xFF)) +#define GLOBAL_ACCESS_FLAG 0x0010 + typedef struct { int cbSize; char *shortName, *description, *author, *authorEmail; DWORD version; - BYTE flags; //unused now + WORD flags; } PLUGININFO; #endif |