I'm trying to make a small modification to the foo_ape component (to make error messages more informative), but I'm having trouble even building the component "out of the box".
I'm not at all experienced with VC++ (I use normally Borland C++), but since the SDK comes pre-configured with a VC++ workspace, I figured that it would be simplest to use VC++. I've got as far as adding the Monkey's SDK so that things will compile, but getting the DLL linked has me stumped.
First attempt to link came up with an undefined external (_CreateIAPEDecompressEx@8). So I added Monkey's MACLib.lib to the foo_ape project and tried again. This time I get lots of duplicate definitions (as far as I can tell, MSVCRTD and LIBCMT are squabbling), plus some more undefined externals, this time to __ftol2
Can anyone tell me:
(a) how to configure VC++ to fix the conflict between MSVCRTD and LIBCMT? (VC++ tells me to use "/NODEFAULTLIB:library", but where do I set this?)
(b) what library contains __ftol2?
Thanks
