mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 06:31:37 +00:00
16 lines
187 B
C++
16 lines
187 B
C++
#include <SDL.h>
|
|
|
|
int main()
|
|
{
|
|
AEDI_EXPECT(SDL_Init(SDL_INIT_EVERYTHING) == 0);
|
|
|
|
SDL_Event dummy;
|
|
|
|
while (SDL_PollEvent(&dummy))
|
|
{
|
|
}
|
|
|
|
SDL_Quit();
|
|
|
|
return 0;
|
|
}
|