Thanks B,
I have tried:
Removing MSCORE_EXPORT
Placing the prototype at the top of my file (does not compile, unresolved symbol),
Placing the prototype at in the msbsplin.fdf (compiles but silently stops on the call with no error or return)
Replacing MSCORE_EXPORT with extern "C" (compiles but silently stops on the call with no error or return)
and other combinations of the above.
Should I be placing this somewhere else?
Is the signature the same in v8i as connect?
the lib is linked properly as I am using the other bspline functions with no issue.
/shrug
DPoint3d pPoints[4]; int success = mdlBspline_computeEqualChordByNumber(pPoints, NULL, &curve, 3, 0.1); printf("Success: %d\n", success); // Not called