I'm normally a VB.Net/C# guy but because of a third party dll that isn't working in .Net, I'm having to interact with it using C++. I'm able to read and understand (for the most part) C and C++, but I've never actually written any code in it.
The third party dll contains 10 functions that I have to interact with but I cannot figure out how to access them. In VB/VBA I would use "Declare Function/Sub name Lib "library"" but I don't know how to do that in C++.
I've come across the HINSTANCE, LoadLibrary, GetProcAddress("ProcName") but i don't know how to actually call the procedure.
Could someone provide the code that would allow me to do that?