Someone PLEASE help me with this one... I get this error
R:\Career Day\Try\Pong\ThunderPong.h(611) : error C2065: 'VK_A' : undeclared identifier
whenever I try to use the virtual keys... I have encluded everything under the sun trying
to get this to work... Any help would be lovely as my patients wears thin (enter 3rd week on this one)
MSDN is less then helpfull...
I got Viscul C++ 5.00 and I am using the CMU graphics to do this pong...
What do i need to do to get the imput and what do i need to process it and basicaly anything pretaning to the keyboard.
Here's the code that is giving me all the proplems
#define KEYDOWN( vk_code ) (( GetAsyncKeyState( vk_code ) & 0x8000 ) ? 1 : 0 )
if ((GetAsyncKeyState(VK_A)&1) ==0) // KEYDOWN (VK_A)/* input == 'a'*/)