view src/sdl-test.c @ 2338:ecc478b45d13

Move more relevant information to the top of the "Download" section
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 16:14:40 +0200
parents f653602a0500
children 8a6c466753e2
line wrap: on
line source

/* This file is part of MXE.                   */
/* See doc/index.html for further information. */

#include <SDL.h>

int main(int argc, char *argv[])
{
    SDL_Surface *screen;

    (void)argc;
    (void)argv;

    if (SDL_Init(SDL_INIT_EVERYTHING) < 0) return 1;

    screen = SDL_SetVideoMode(640, 480, 32, SDL_HWSURFACE);
    (void)screen;

    SDL_Quit();
    return 0;
}