G
Guest
I wrote and compiled a dll without error. When running the app that calls my dll, I get
"Missing required export functions at <filepath to my dll>
The dll was created with Visual C++ .Net (Version 7). I left the various files that were automatically created for my project (my_dll.cpp, my_dll.def, stdafx.cpp, stdafx.h) intact. I added a new .cpp file which contained my code and a header file that goes with it
When I look at my_dll.def, it does list all the three functions from my .cpp file that should be exposed
Is there something else I have to do to create the dll
(Oh yes, I had to change the project's Precompiled Headers property to "Not Using Precompiled Headers".
Thank you.
"Missing required export functions at <filepath to my dll>
The dll was created with Visual C++ .Net (Version 7). I left the various files that were automatically created for my project (my_dll.cpp, my_dll.def, stdafx.cpp, stdafx.h) intact. I added a new .cpp file which contained my code and a header file that goes with it
When I look at my_dll.def, it does list all the three functions from my .cpp file that should be exposed
Is there something else I have to do to create the dll
(Oh yes, I had to change the project's Precompiled Headers property to "Not Using Precompiled Headers".
Thank you.