Hi,
I am writing a managed c++ library under .net. It has one class,
brilliantly named Class1 which has one function FtoC. When I put the
following line in the .def file
EXPORTS ftoc=Class1::FtoC
the linker gives the error
unresolved external symbol Class1::FtoC
What am I doing wrong?
Also, I am doing this because I need to know the name of the function inside
the dll to call it from lisp. Instead of a .def file, I tried using dumpbin
on the dll file, but it didnt show any of the functions. So, I am wondering
if there is something I am missing during compilation (like a switch to
set).
thanks,
--unm