forked from KolibriOS/kolibrios
3fc184a141
git-svn-id: svn://kolibrios.org@9288 a494cfbc-eb01-0410-851d-a64ba20cac60
29 lines
443 B
C
Executable File
29 lines
443 B
C
Executable File
#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;
|
|
}
|
|
}
|
|
}
|
|
}
|