error C3861: 'GetASyncKeyState': identifier not found

Started by
1 comment, last by buggy123 14 years, 8 months ago
I was wondering...what causes this error? I defined the macros #define KEY_DOWN(vk_code)((GetASyncKeyState(vk_code) & 0x8000) ? 1 : 0) #define KEY_UP(vk_code)((GetASyncKeyState(vk_code) & 0x8000) ? 1 : 0) and used if(KEY_DOWN(VK_ESCAPE)) PostMessage(hWnd, WM_DESTROY, 0, 0); but it keeps giving this error: error C3861: 'GetASyncKeyState': identifier not found I included windows.h and even windowsx.h It's probably some stupid error that I overlooked but I couldn't find it.
Advertisement
Async. The 's' is lowercase.
SlimDX | Ventspace Blog | Twitter | Diverse teams make better games. I am currently hiring capable C++ engine developers in Baltimore, MD.
WOW...OMG WOW...

Well, thanks for the answer, now my program works. :D

but I feel like such an idiot >_<

This topic is closed to new replies.

Advertisement