我正在努力使源代码正常工作
extern "C" {
typedef LRESULT (__stdcall *NRI_PM_CALLBACK)(WPARAM, LPARAM);
}
LRESULT OnPaymentManagerMessage(WPARAM wParam, LPARAM lParam)
{
int type = (wParam >> 4) & 0x0F;
int device = wParam & 0x0F;
//cstr.Format("** Msg **[ %d %d %d ]", type, device, lParam);
//handle message here
return lParam;
}
NRI_PM_CALLBACK callback = &OnPaymentManagerMessage; //error on this line
错误:类型为“LRESULT(*)(WPARAM wParam,LPARAM lParam)”的值不能用于初始化“NRI_PM_CALLBACK”类型的实体
我在Visual Studio Express 2012中运行它
任何想法为什么?
由于
答案 0 :(得分:3)
使OnPaymentManagerMessage()
成为__stdcall
函数:
LRESULT __stdcall OnPaymentManagerMessage(WPARAM wParam, LPARAM lParam)
/* ... */
__cdecl
是编译器的默认值(尽管编译器选项可以改变它)。