Trouble Building a DLL with Visual Studio
Mar 27, 2015 at 11:52am UTC
Hello everyone,
i'm trying to build a DLL with Visual Studio 2010 Express. Everything works fine until i make the .def file as follow:
DLL.def
1 2 3
LIBRARY MaDLL
EXPORTS
BinomialTree
when i delete these three lines, the build is successful. When I type them i get the following message :
"error C2146: syntax error : missing ';' before identifier 'MaDLL"
Thank you for your help
Last edited on Mar 27, 2015 at 11:53am UTC
Mar 27, 2015 at 1:37pm UTC
The DLL that i'm building right now has quotes...
1 2 3 4 5 6 7
; My Extension DLL.def : Declares the module parameters for the DLL.
LIBRARY "AcquisitionDLL"
EXPORTS
; Explicit exports can go here
GetTestRuntimeClass
Topic archived. No new replies allowed.