Home | History | Annotate | Download | only in SDL2

Lines Matching refs:Uint32

156     Uint32 type;
157 Uint32 timestamp;
165 Uint32 type; /**< ::SDL_WINDOWEVENT */
166 Uint32 timestamp;
167 Uint32 windowID; /**< The associated window */
181 Uint32 type; /**< ::SDL_KEYDOWN or ::SDL_KEYUP */
182 Uint32 timestamp;
183 Uint32 windowID; /**< The window with keyboard focus, if any */
197 Uint32 type; /**< ::SDL_TEXTEDITING */
198 Uint32 timestamp;
199 Uint32 windowID; /**< The window with keyboard focus, if any */
212 Uint32 type; /**< ::SDL_TEXTINPUT */
213 Uint32 timestamp;
214 Uint32 windowID; /**< The window with keyboard focus, if any */
223 Uint32 type; /**< ::SDL_MOUSEMOTION */
224 Uint32 timestamp;
225 Uint32 windowID; /**< The window with mouse focus, if any */
226 Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */
227 Uint32 state; /**< The current button state */
239 Uint32 type; /**< ::SDL_MOUSEBUTTONDOWN or ::SDL_MOUSEBUTTONUP */
240 Uint32 timestamp;
241 Uint32 windowID; /**< The window with mouse focus, if any */
242 Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */
256 Uint32 type; /**< ::SDL_MOUSEWHEEL */
257 Uint32 timestamp;
258 Uint32 windowID; /**< The window with mouse focus, if any */
259 Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */
269 Uint32 type; /**< ::SDL_JOYAXISMOTION */
270 Uint32 timestamp;
285 Uint32 type; /**< ::SDL_JOYBALLMOTION */
286 Uint32 timestamp;
301 Uint32 type; /**< ::SDL_JOYHATMOTION */
302 Uint32 timestamp;
321 Uint32 type; /**< ::SDL_JOYBUTTONDOWN or ::SDL_JOYBUTTONUP */
322 Uint32 timestamp;
335 Uint32 type; /**< ::SDL_JOYDEVICEADDED or ::SDL_JOYDEVICEREMOVED */
336 Uint32 timestamp;
346 Uint32 type; /**< ::SDL_CONTROLLERAXISMOTION */
347 Uint32 timestamp;
363 Uint32 type; /**< ::SDL_CONTROLLERBUTTONDOWN or ::SDL_CONTROLLERBUTTONUP */
364 Uint32 timestamp;
378 Uint32 type; /**< ::SDL_CONTROLLERDEVICEADDED, ::SDL_CONTROLLERDEVICEREMOVED, or ::SDL_CONTROLLERDEVICEREMAPPED */
379 Uint32 timestamp;
389 Uint32 type; /**< ::SDL_FINGERMOTION or ::SDL_FINGERDOWN or ::SDL_FINGERUP */
390 Uint32 timestamp;
406 Uint32 type; /**< ::SDL_MULTIGESTURE */
407 Uint32 timestamp;
423 Uint32 type; /**< ::SDL_DOLLARGESTURE */
424 Uint32 timestamp;
427 Uint32 numFingers;
441 Uint32 type; /**< ::SDL_DROPFILE */
442 Uint32 timestamp;
452 Uint32 type; /**< ::SDL_QUIT */
453 Uint32 timestamp;
461 Uint32 type; /**< ::SDL_QUIT */
462 Uint32 timestamp;
470 Uint32 type; /**< ::SDL_USEREVENT through ::SDL_LASTEVENT-1 */
471 Uint32 timestamp;
472 Uint32 windowID; /**< The associated window if any */
490 Uint32 type; /**< ::SDL_SYSWMEVENT */
491 Uint32 timestamp;
500 Uint32 type; /**< Event type, shared with all events */
575 Uint32 minType, Uint32 maxType);
581 extern DECLSPEC SDL_bool SDLCALL SDL_HasEvent(Uint32 type);
582 extern DECLSPEC SDL_bool SDLCALL SDL_HasEvents(Uint32 minType, Uint32 maxType);
587 extern DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type);
588 extern DECLSPEC void SDLCALL SDL_FlushEvents(Uint32 minType, Uint32 maxType);
702 extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint32 type, int state);
711 * returns (Uint32)-1
713 extern DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents);