键盘钩子时error C2065: 'KBDLLHOOKSTRUCT'
主要是需要包含 <windows.h>或者<winuser.h>
但是这个会与<afxwin.h>有冲突
在前加入
#ifndef WINVER
#define WINVER 0x0400
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0400
#endif
解决
主要是需要包含 <windows.h>或者<winuser.h>
但是这个会与<afxwin.h>有冲突
在前加入
#ifndef WINVER
#define WINVER 0x0400
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0400
#endif
解决