www.pudn.com > autolrc.rar > gen.h


 
////////////////////////////////////////////// 
/// @defgroup winampplughead gen类插件头 
/// @author  abao++ 
/// @version 1.0 
/// @date    2006-9-24 9:54:06 
/// @{ 
////////////////////////////////////////////// 
#ifndef _gen_h_ 
#define _gen_h_ 
#include  
 
 
 
typedef struct { 
	int version; 
	char *description; 
	int (*init)(); 
	void (*config)(); 
	void (*quit)(); 
	HWND hwndParent; 
	HINSTANCE hDllInstance; 
} winampGeneralPurposePlugin; 
 
#define GPPHDR_VER 0x10 
#define PLUGIN_DESC "abao++ 歌词显示插件" 
 
extern winampGeneralPurposePlugin *gen_plugins[256]; 
typedef winampGeneralPurposePlugin * (*winampGeneralPurposePluginGetter)(); 
#endif 
/// @}  文件注释完毕