SetWindowsHookEx(.., GetMsgProc,...,...) 
第二个参数我定义成:
LRESULT CALLBACK GetMsgProcint(nCode, WPARAM wParam, LPARAM lParam)
{
}
编译时说
--------------------Configuration: MyExe - Win32 Debug--------------------
 error C2065: 'GetMsgProc' : undeclared identifier
 error C2373: 'GetMsgProc' : redefinition; different type modifiers
为什么呢?