Keys

Started by
1 comment, last by JimPrice 19 years, 4 months ago
What are the variables for the letter keys? Ex: VK_RETURN. I cant figure out what to do to get the letter keys avalible to use in my games. -Thanks
Advertisement
From my WINUSER.H:

/* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
/* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */

Cheers!
From NeHe:

Keys

Jim.

This topic is closed to new replies.

Advertisement