view src/sdl-test.c @ 671:59aceb05f934

fixed quoting in the ./configure patch of package portaudio
author Volker Grabsch <vog@notjusthosting.com>
date Tue, 26 Jan 2010 23:59:33 +0100
parents b1d03b91eb1e
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;
}