#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)) #define GLOBAL_ACCESS_FLAG 0x0010 typedef struct { int cbSize; char *shortName, *description, *author, *authorEmail; DWORD version; WORD flags; } PLUGININFO; #endif