From d83d23b9a9df04386966452f7b84d84b01dbb3fb Mon Sep 17 00:00:00 2001 From: Gluzskiy Alexandr Date: Sun, 1 Aug 2010 15:22:20 +0300 Subject: new file: pluginapi.h --- api/pluginapi.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 api/pluginapi.h (limited to 'api/pluginapi.h') diff --git a/api/pluginapi.h b/api/pluginapi.h new file mode 100644 index 0000000..91c8d47 --- /dev/null +++ b/api/pluginapi.h @@ -0,0 +1,13 @@ +#ifndef PLUGINAPI_H +#define PLUGINAPI_H + +#define PLUGIN_MAKE_VERSION(a,b,c,d) (((((DWORD)(a))&0xFF)<<24)|((((DWORD)(b))&0xFF)<<16)|((((DWORD)(c))&0xFF)<<8)|(((DWORD)(d))&0xFF)) + +typedef struct +{ + int cbSize; + char *shortName, *description, *author, *authorEmail; + DWORD version; + BYTE flags; //unused now +} PLUGININFO; +#endif -- cgit v1.2.3