SDL_dummy_main.c 211 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 /* Include the SDL main definition header */ #include "SDL_main.h" #ifdef main #undef main int main(int argc, char *argv[]) { return(SDL_main(argc, argv)); } #else /* Nothing to do on this platform */ #endif