SDL_WaitEvent

Name

SDL_WaitEvent -- Waits indefinitely for the next available event.

Synopsis

#include "SDL.h"

int SDL_WaitEvent(SDL_Event *event);

Description

Waits indefinitely for the next available event, returning 0 if there was an error while waiting for events, 1 otherwise.

If event is not NULL, the next event is removed from the queue and stored in that area.

See Also

SDL_Event, SDL_PollEvent

SDL_WaitEvent (last edited 2008-04-17 08:18:32 by localhost)