blob: ce3a76739d9c8e5522553cd2b5dffba74a2f6f76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __STDC_VERSION__
//! @file events.S
//!
//! Assembler bindings for SDL2 (SDL_events.h)
#define SIZE_SDL_Event 56
#define OFFSET_SDL_Event_type 0
#define SDL_EVENT_QUIT 0x100
//! @fn int SDL_PollEvent(SDL_Event * event);
//! @param event the SDL_Event structure to be filled with the next event from the queue, or NULL.
//! @return 1 if there is a pending event, or 0 if there isn't.
.type SDL_PollEvent, @function
.extern SDL_PollEvent
#endif
|