12 lines
217 B
C++
12 lines
217 B
C++
|
|
|
||
|
|
#ifndef _SDL_quit_h
|
||
|
|
#define _SDL_quit_h
|
||
|
|
|
||
|
|
#include "SDL_stdinc.h"
|
||
|
|
#include "SDL_error.h"
|
||
|
|
|
||
|
|
#define SDL_QuitRequested() \
|
||
|
|
(SDL_PumpEvents(), (SDL_PeepEvents(NULL,0,SDL_PEEKEVENT,SDL_QUIT,SDL_QUIT) > 0))
|
||
|
|
|
||
|
|
#endif
|