CompuServe Messages

C++ &-Referencing

    28-Feb-90 15:26:55
Fm: John M. Dlugosz 74066,3717
To: Chuck Leamon 71551,16
As I understand it, your problem is linking with the ASM stuff. WHen prototyping the asm functions, use the "C" qualifier. extern "C" assembly_function (int, int); for example. Just stick in the "C" on all the prototypes for the ASM calls. Alternativly, change the name of the ASM function to the name Zortech is trying to link with. A few other problems you will have: enum values are now local to a class. Hoist the enum type def out of the class for a quick fix. –John