forked from KolibriOS/kolibrios
a561cc6cd0
git-svn-id: svn://kolibrios.org@8218 a494cfbc-eb01-0410-851d-a64ba20cac60
29 lines
419 B
C
29 lines
419 B
C
#include "SDL.h"
|
|
#include <stdlib.h>
|
|
|
|
SDL_Surface* screen;
|
|
static int done = 0;
|
|
|
|
int main()
|
|
{
|
|
SDL_Event event;
|
|
if(SDL_Init(SDL_INIT_VIDEO) < 0) exit(0);
|
|
atexit(SDL_Quit);
|
|
screen = SDL_SetVideoMode(320, 200, 8, SDL_SWSURFACE);
|
|
while (!done)
|
|
{
|
|
while (SDL_PollEvent(&event))
|
|
{
|
|
switch (event.type)
|
|
{
|
|
case SDL_KEYDOWN:
|
|
case SDL_QUIT:
|
|
done = 1;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|