How do i go about doing this? it is precompiled when you get it. i have MS Visual Suite 6.0, but im not sure how i would go about compiling this project.....can somebody help me with detailed instructions?
Just adding in, i found the msvc++ workspace/project file, but when i tried to compile it it gave me like 57 errors mostly in fight.c and polymorph.c, and about 600 warnings in tables.c.......whats going on?
At least post a selection of the errors, preferably starting with the first ones. Just saying "it gave me like 57 errors" doesn't give us much to go on. With errors the error message is the important thing, not the fact that you got the message.
This means that you don't have a function called WinMain anywhere...
...which means that either you chose the wrong project settings, or you don't have the function declared, or don't have the preprocessor definitions you need to make it realize it's compiling under Windows.
"This means that you don't have a function called WinMain anywhere...
...which means that either you chose the wrong project settings, or you don't have the function declared, or don't have the preprocessor definitions you need to make it realize it's compiling under Windows."
I do have the function WinMain somewhere.
And I HAVE the right project settings, and the function is declared.
which preprocessor definitions do i need?
the ones i have are:
WIN32,_DEBUG,_WINDOWS,_MBCS
o yeah, i did find more than one, so i left onlt one of them, in comm.c
and when i compiled i got the error:
LINK : error LNK2001: unresolved external symbol _WinMain
I think the one in comm.c is the correct one. I don't see why SMAUG wants WinMain, it is a Unix (console) app. You need main, and it should be in comm.c.