Contact: aviboots(AT)netvision.net.il
40,024 questions
51,976 answers
573 users
#include <stdio.h> #include <SDL.h> int main(int argc, char* argv[]) { if (SDL_Init(SDL_INIT_EVERYTHING) != 0) { printf("SDL_Init Error: %s\n", SDL_GetError()); } else { printf("SDL_Init OK\n"); } return 0; } /* run: SDL_Init OK */