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