Hi, I've run into a bit of a problem in that I need to compile one of the event ss files as C++. Even though I use extern "C" at the top...
extern "C" {
#include <sci_memory.h>
#include <engine.h>
#include <soundserver.h>
#include <sound.h>
};
VC++ still picks up the C++ reserved words in the #include files (class in
vocabulary.h and delete in vm.h). Is it OK if I change these a little (to
whatever is suggested)?
Alex.
