From 96970c31c671030214c09a2d77b89e9d1ded75fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sun, 26 Sep 2010 01:04:31 +0200 Subject: [PATCH] =?UTF-8?q?Initialisation=20de=20la=20biblioth=C3=A8que=20?= =?UTF-8?q?SDL.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index b4af39a..fff9e97 100644 --- a/main.c +++ b/main.c @@ -1,5 +1,11 @@ #include +#include -int main() { - printf("hello world\n"); +int main(int argc, char** argv) { + SDL_Init(SDL_INIT_VIDEO); + + + + SDL_Quit(); + return 0; }