summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/api.h4
-rw-r--r--api/pluginapi.h4
2 files changed, 3 insertions, 5 deletions
diff --git a/api/api.h b/api/api.h
deleted file mode 100644
index 441f258..0000000
--- a/api/api.h
+++ /dev/null
@@ -1,4 +0,0 @@
-#ifndef API_H
-#define API_H
-#endif //API_H
-
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