I am attempting to call a simple function that is stored in a simple dylib file, from a simple Word for Mac macro,
I\'m creating the .dylib with Xcode5 on OS-X Mountain
Rather than looking up the mangled name, I suspect the easiest way is to wrap your function declarations:
extern "C" { bool testFunc(); }