Penguin
Note: You are viewing an old revision of this page. View the current version.

SDL_GetKeyState?

SDL_GetKeyState?

NAME SYNOPSIS DESCRIPTION EXAMPLE SEE ALSO


NAME

SDL_GetKeyState?- Get a snapshot of the current keyboard state

SYNOPSIS

#include

Uint8 *SDL_GetKeyState?(__int

  • numkeys__);

DESCRIPTION

Gets a snapshot of the current keyboard state. The current state is return as a pointer to an array, the size of this array is stored in numkeys. The array is indexed by the SDLK_* symbols. A value of 1 means the key is pressed and a value of 0 means its not.

Note:

Use SDL_PumpEvents? to update the state array.

EXAMPLE

Uint8 *keystate = SDL_GetKeyState?(NULL); if ( keystate[SDLK_RETURN? ) printf(

SEE ALSO

SDL Key Symbols, SDL_PumpEvents?


This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.