summaryrefslogtreecommitdiff
path: root/api/pluginapi.h
blob: 432b2d2cef03a6d2c57939a25e774a882c4e6593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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