I am loading my own dll I wrote but keep getting an error that my function cannot be found. Its something simple right now but I am not sure if I have it set right to expose the function or not. Any c++ experts among us that may be able to point me in the right direction?
It is in the correct place but keeps throwing the function not found error. Was unsure if my code was correct for making the functions available to an outside app like xojo.
Not being a Windows guy I’m not certain
You have the DLL Main and all the other normal bits
One thing that’s quite likely not going to work is trying to load a C++ class as the API to the DLL
But there’s only a small snippet of your code so its hard to know why the function isn’t being found
I did just realize I am getting the typical mangling that c++ does to a function. Once I have that resolved then I think it should load correctly then.