Calling functions in a DLL from C++
There are many ways to do this but I think one of the easiest options is to link the application to the DLL at link time and then use a definition file to define the symbols to be exported from the DLL. CAVEAT: The definition file approach works bests for undecorated symbol names. If you … Read more