SDL problem

ok so i am using Dev C++ to do all my programming stuff and i decided to
try out SDL for it but i cant seem to get it to work here is what i got


1
2
3
4
5
6
7
8
9
#include <"SDL/SDL.h">
int main( int argc, char* args[] )
{
    SDL_Init( SDL_INIT_EVERYTHING );
    
    SDL_Quit();
    
    return 0;    
}


and i went through the steps and made it so the files are in their correct places but i still get this message >.<

"4 C:\Dev-Cpp\My Projects\5.cpp `SDL_INIT_EVERYTHING' undeclared (first use this function) "

and here is what i have in compilers options C++ includes "C:\SDL-1.2.14\include"
and here is what i have in my directories in the compilers options "C:\SDL-1.2.14\lib"

what am i doing wrong >.>?
Last edited on
i even put the SDL.dll file with my executable file >.> any ideas
#include <"SDL/SDL.h">
WTF?
#include <SDL/SDL.h>
note the difference!
thanks but could you be a bit nicer when you reply >.>
heh. I'm sorry for that. It just popped to my eye and was thinking. Good that it worked
well it was pretty obvious and i feel kinda dum i didnt notice it Xb

thanks again XD
Topic archived. No new replies allowed.