So, the infamous error is back. The project is complaining that it can\'t find the main() method (that\'s what the error means, right).
However I do have a main, and
SDL_main.h is included automatically from SDL.h, so you always get the nasty #define.
Just write:
#include #undef main
And it should work fine