Home | History | Annotate | Download | only in test

Lines Matching defs:numkeys

17  * @brief Check call to SDL_GetKeyboardState with and without numkeys reference.
24 int numkeys;
27 /* Case where numkeys pointer is NULL */
32 /* Case where numkeys pointer is not NULL */
33 numkeys = -1;
34 state = (Uint8 *)SDL_GetKeyboardState(&numkeys);
35 SDLTest_AssertPass("Call to SDL_GetKeyboardState(&numkeys)");
37 SDLTest_AssertCheck(numkeys >= 0, "Validate that value of numkeys is >= 0, got: %i", numkeys);
659 { (SDLTest_TestCaseFp)keyboard_getKeyboardState, "keyboard_getKeyboardState", "Check call to SDL_GetKeyboardState with and without numkeys reference", TEST_ENABLED };