Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Creating a .Net wrapper

Options
  • 18-01-2012 1:38pm
    #1
    Registered Users Posts: 1,686 ✭✭✭


    Hi all,

    I am working on a native c++ dll but visual studios won't allow me to reference it because its not a COM or .NET.

    How do I wrap my dll to work with .Net.

    I am using code::Blocks (windows+ubuntu linux).


Comments

  • Registered Users Posts: 2,023 ✭✭✭Colonel Panic


    Do you export C style functions from the DLL? If so use PInvoke, if you're exporting C++ classes in the DLL then first off, sad faces, second off, make a C++/CLI wrapper for the C++ classes and reference that from other .Net assemblies.

    Loads of examples of how to do it on PInvoke.net or you can post some code here if you need specific help.


Advertisement