view src/sdl-test.c @ 714:29f1ba4559ae

point consequently to "doc/index.html" instead of "doc/index.html or doc/README"
author Volker Grabsch <vog@notjusthosting.com>
date Mon, 08 Feb 2010 00:58:06 +0100
parents b1d03b91eb1e
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;
}