The prototype looks like this:
struct Mode_Screen *OpenGraphics(char *Title, struct Mode_Screen *ms, int override);
Hey, is it possible that you supplied arguments that do not perfectly match up with this prototype? if not then it's possible the C++ compiler thinks you are overloading the function call in which case it would assume it's a normal C++ function that would need to be linked. Since you're getting a linker error rather then a compile error, I'm thinking it's something along those lines. Are you sure there is no link library that you're supposed to link with?
- Mike