The Winamp Remote Control suite
a remote control client and plugin for Winamp 2.x, 5.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
gen_plugin.h
Go to the documentation of this file.
1 
2 #ifndef gen_pluginH
3 #define gen_pluginH
4 
5 
6 
7 typedef struct {
8  int version;
9  char *description;
10  int (*init)();
11  void (*config)();
12  void (*quit)();
13  HWND hwndParent;
14  HINSTANCE hDllInstance;
16 
17 #define GPPHDR_VER 0x10
18 
20 
21 typedef winampGeneralPurposePlugin * (*winampGeneralPurposePluginGetter)();
22 #endif
23 
24 
25 void config(void);
26 void quit(void);
27 int init(void);
28 
29