K
kelisten
Unregistered / Unconfirmed
GUEST, unregistred user!
有一个DLL在不定时的发起事件,函数声明如下:
typedef int (HandlerFunc)(Event *event, void *tag);
int setHandler(char *hName, void *tag, HandlerFunc*);
所有的事件都通过 HandlerFunc进行返回。我在classA中如下进行:
int handleevent(Event *event, void *tag);//省略实现部分
class A{
void init();
}
void A::init()
{
setHandler("test", NULL, handleevent)
}
问题:如何把handleevent函数包括到一个class中(包括 A)?
typedef int (HandlerFunc)(Event *event, void *tag);
int setHandler(char *hName, void *tag, HandlerFunc*);
所有的事件都通过 HandlerFunc进行返回。我在classA中如下进行:
int handleevent(Event *event, void *tag);//省略实现部分
class A{
void init();
}
void A::init()
{
setHandler("test", NULL, handleevent)
}
问题:如何把handleevent函数包括到一个class中(包括 A)?