Wiki Page Content

Differences between revisions 6 and 7
Revision 6 as of 2010-10-11 05:33:05
Size: 2157
Editor: SheenaSmith
Comment: update content - pointers, structs
Revision 7 as of 2011-11-06 23:31:55
Size: 2177
Editor: SheenaSmith
Comment: camelcase pragma change; comment out callback, prob not relevant
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
#pragma disable-camelcase #pragma camelcase off
Line 37: Line 37:
<<Color2(green,This was listed after the function description. Does it belong on this page?)>>
 typedef int (SDLCALL * SDL_!EventFilter) (void *userdata, SDL_Event * event);
##<<Color2(green,This was listed after the function description. Does it belong on this page?)>>
## {{{
##
int SDL_EventFilter(void*      userdata,
##
SDL_Event* event);
##}}}
Line 41: Line 44:
 Note: Events pushed onto the queue with [[SDL_PushEvent]]() or [[SDL_PeepEvents]]() do not get passed through the event filter. *
Note: Events pushed onto the queue with [[SDL_PushEvent]]() or [[SDL_PeepEvents]]() do not get passed through the event filter. *

DRAFT

SDL_PushEvent

Use this function to add an event to the event queue.

Syntax

int SDL_PushEvent(SDL_Event* event)

Function Parameters

event

the [[SDL_Event]] to be added to the queue

green

Return Value

Returns 1 on success, 0 if the event was filtered, or a negative error code on failure; call SDL_GetError() for more information.

purple

Code Examples

You can add your code example here

Remarks

*The event queue can actually be used as a two way communication channel. Not only can events be read from the queue, but the user can also push their own events onto it. event is a pointer to the event structure you wish to push onto the queue. The event is copied into the queue, and the caller may dispose of the memory pointed to after SDL_PushEvent() returns.

Note: Pushing device input events onto the queue doesn't modify the state of the device within SDL.

This function is thread safe, and can be called from other threads safely. *

*green

Note: Events pushed onto the queue with SDL_PushEvent() or SDL_PeepEvents() do not get passed through the event filter. *


CategoryAPI, CategoryEvents

None: SDL_PushEvent (last edited 2015-07-31 19:27:19 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit