Create DLL

  • Thread starter Thread starter Jeremy
  • Start date Start date
J

Jeremy

Hello,

How do I create a DLL from a C++ .obj file. Any help and
pointers would be appreciated

Regards,

Jeremy
 
Jeremy,

What kind of DLL do you want to create? If you are looking to create a
DLL with managed classes, then you will have to create a new C++ project
which uses Managed Extensions for C++, and create managed wrappers for your
C++ objects. Once you do that, you will have to link to your obj file, and
then compile the app.

Hope this helps.
 
Back
Top