Wiki Page Content

Revision 1 as of 2011-02-16 18:12:11

Clear message

DRAFT

SDL_DelEventWatch

Use this function to remove an event watch function added with SDL_AddEventWatch().

Syntax

void SDL_DelEventWatch(SDL_EventFilter filter,
                       void*           userdata)

Function Parameters

filter

the function to stop calling; see Remarks for details

userdata

a pointer to the event queue to stop watching

Code Examples

You can add your code example here

Remarks

The function prototype for filter is:

int YourEventFilter(void*      userdata,
                    SDL_Event* event)

You can add useful comments here


CategoryAPI, CategoryEvents

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