view src/sdl-test.c @ 725:e269b05413ab

update version of package libgsasl
author Mark Brand <mabrand@mabrand.nl>
date Fri, 12 Feb 2010 17:02:29 +0100
parents 29f1ba4559ae
children 2fc6fe4bb9f4
line wrap: on
line source

/* This file is part of mingw-cross-env.                     */
/* 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);

    SDL_Quit();
    return 0;
}