Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hi,
I am trying to call the toolkit function from VB api as per example given in article CS252032.
DLL loaded but ExecuteFunction throws pfcExceptions::XToolkitNotFound error.
Can anyone success in this method. Please guide.
Solved! Go to Solution.
Use #define EXPORT extern "C" __declspec(dllexport) instead of PRO_TK_DLL_EXPORT.
Due to name mangling you might get not found error:
Refer: https://stackoverflow.com/questions/1314743/what-is-name-mangling-and-how-does-it-work
Use #define EXPORT extern "C" __declspec(dllexport) instead of PRO_TK_DLL_EXPORT.
Due to name mangling you might get not found error:
Refer: https://stackoverflow.com/questions/1314743/what-is-name-mangling-and-how-does-it-work
Hi Syalagudri,
Thanks for the solution.
