I'm trying to create a C++ CIN using MSVC 6. The CIN is fairly simple:
// multab.cpp
#include "extcode.h"
CIN MgErr CINRun(float64 *A, float64 *B, float64 *C);
CIN MgErr CINRun(float64 *A, float64 *B, float64 *C)
{
*C=*A * *B;
return noErr;
}
This compiles ok, but when building the dll, I get this message:
cin.obj : error LNK2001: unresolved external symbol _CINRun
I have followed the instructions for setting up the project acording to the
CINRef man. p1-30.
What is wrong?
Thanks for your time.
ttLied.