view src/sdl-test.c @ 657:b1d03b91eb1e

test program for package sdl
author Volker Grabsch <vog@notjusthosting.com>
date Fri, 22 Jan 2010 03:53:37 +0100
parents
children 29f1ba4559ae
line wrap: on
line source

/* This file is part of mingw-cross-env.                     */
/* See doc/index.html or doc/README 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;
}