vote up 3 vote down star
2

I want to use implicit linking in my project , and nmake really wants a .def file . The problem is , that this is a class , and I don't know what to write in the exports section . Could anyone point me in the right direction ?

The error message is the following :

NMAKE : U1073: don't know how to make 'DLLCLASS.def'

P.S: I'm trying to build using Windows CE Platform Builder .

flag

73% accept rate
Using a .DEF file is the worst way to export C++ code. I hope that the dllimport/dllexport keywords described by Greg Hewgill can be used in your case, as shown by this MS link: msdn.microsoft.com/en-us/library/… – paercebal Oct 9 '08 at 20:32

3 Answers

vote up 1 vote down check

You can always find the decorated name for the member function by using dumpbin /symbols myclass.obj

in my case

class A {
   public:
     A( int ){}
};

the dumpbin dump showed the symbol ??0A@@QAE@H@Z (public: __thiscall A::A(int))

Putting this symbol in the .def file causes the linker to create the A::A(int) symbol in the export symbols.

BUT! as @paercebal states in his comment: the manual entry of decorated (mangled) names is a chore - error prone, and sadly enough, not guarenteed to be portable across compiler versions.

link|flag
Thank you very much ! This may be the solution I've been looking for . – Vhaerun Oct 10 '08 at 6:47
vote up 5 vote down

If I recall correctly, you can use __declspec(dllexport) on the class, and VC++ will automatically create exports for all the symbols related to the class (constructors/destructor, methods, vtable, typeinfo, etc).

Microsoft has more information on this here.

link|flag
vote up 1 vote down

The solution is the following :

  • since a class is exported,you also need to add the exported methods in the .def file

  • I didn't find out how to export a constructor , so I went with using a factory method ( static ) , which will return new instances of an object

  • the other functions will be exported by adding normal exporting declaration in the .def file

Hope someone will benefit from this information .

link|flag
this is not a solution, but a workaround. You can add the constructor symbol in the .def file. – xtofl Oct 9 '08 at 11:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.