SDL problem with SDL_image.h

Hi,
i downloaded it and i put all the .dll in windows/system32/, the .h in the include directory, and the .lib in lib directory.

I write #include “SDL_image.h” in my program and i have two errors with visual C++ 6 :

error C2556: ‘void __cdecl SDL_main(int,char ** )’ : overloaded function differs only by return type from ‘int __cdecl SDL_main(int,char *[])’
d:\vc98\include\sdl_main.h(56) : see declaration of ‘SDL_main’

error C2371: ‘SDL_main’ : redefinition; different basic types
d:\vc98\include\sdl_main.h(56) : see declaration of ‘SDL_main’

i’m using glut for the window.

Can you help me ?

Originally posted by airseb:
[b]Hi,
i downloaded it and i put all the .dll in windows/system32/, the .h in the include directory, and the .lib in lib directory.

I write #include “SDL_image.h” in my program and i have two errors with visual C++ 6 :

error C2556: ‘void __cdecl SDL_main(int,char ** )’ : overloaded function differs only by return type from ‘int __cdecl SDL_main(int,char *)’
d:\vc98\include\sdl_main.h(56) : see declaration of ‘SDL_main’

error C2371: ‘SDL_main’ : redefinition; different basic types
d:\vc98\include\sdl_main.h(56) : see declaration of ‘SDL_main’

i’m using glut for the window.

Can you help me ?[/b]
Hello there,
CHeck these links out.
http://sol.planet-d.net/gp/ch01_vc6.html
http://www.libsdl.org/tutorials.php
Hope this helps. Thanx

ok thanks i 'll watch it