zdoom-macos-deps/test/sdl2.cpp

17 lines
187 B
C++
Raw Normal View History

2021-03-30 12:14:44 +00:00
#include <SDL.h>
int main()
{
2021-05-17 07:28:55 +00:00
AEDI_EXPECT(SDL_Init(SDL_INIT_EVERYTHING) == 0);
2021-03-30 12:14:44 +00:00
SDL_Event dummy;
2021-03-30 12:14:44 +00:00
while (SDL_PollEvent(&dummy))
{
}
2021-03-30 12:14:44 +00:00
SDL_Quit();
2021-03-30 12:14:44 +00:00
return 0;
2021-03-30 12:14:44 +00:00
}