Converting a C++ .exe project to a dll - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T05:34:57Z http://stackoverflow.com/feeds/question/744750 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/744750/converting-a-c-exe-project-to-a-dll 1 Converting a C++ .exe project to a dll Malfist 2009-04-13T17:45:37Z 2009-04-14T23:28:20Z <p>Microsoft provides the source code of vshadow to manipulate VSS (Volume Shadow Service [shadow copy]), and I've modified it a bit but I want to make it into a dll so I can use it in my C# projects. I don't know exactly how to go about doing that, the source code is fairly simple, and it shouldn't be too hard, but I don't really know where to get started. How should I go about converting it to a usable dll instead of compiling to a executable?</p> <p><b>Update</b>: Someone has already done this: <a href="http://www.alphaleonis.com/2008/08/alphavss-bringing-windows-shadow-copy-service-vss-to-net/" rel="nofollow">http://www.alphaleonis.com/2008/08/alphavss-bringing-windows-shadow-copy-service-vss-to-net/</a></p> http://stackoverflow.com/questions/744750/converting-a-c-exe-project-to-a-dll/744773#744773 3 Answer by Alan for Converting a C++ .exe project to a dll Alan 2009-04-13T17:53:37Z 2009-04-13T18:08:09Z <p>You will need to change your project settings in Visual Studio to create a DLL. In addition you will need to define dll entry points.</p> <p><strike>However, the VSS is a set of COM API's, so you can call them directly from C# with pinvoke, instead of using this wrapper C++ executable. </strike></p> <p>Since the SDK only contains libs, not DLL's you'll have to create a dll project to use it.</p> <p>This is a <a href="http://geeklit.blogspot.com/2006/08/calling-c-lib-from-c.html" rel="nofollow">good blog-how-to</a>.</p> <p>You'll need to download the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0b4f56e4-0ccc-4626-826a-ed2c4c95c871&amp;DisplayLang=en#QuickInfoContainer" rel="nofollow">VSS SDK</a> (if you haven't already).</p> <p><a href="http://msdn.microsoft.com/en-us/magazine/cc164123.aspx" rel="nofollow">Decent article on pinvoke.</a></p> <p>Hope this helps.</p> http://stackoverflow.com/questions/744750/converting-a-c-exe-project-to-a-dll/744779#744779 -1 Answer by Ash for Converting a C++ .exe project to a dll Ash 2009-04-13T17:54:18Z 2009-04-14T23:28:20Z <p>Such a task can range from trivial to extremely complex. In your case, the issue probably leans towards the complex end.</p> <p>The reason for this is because you need to replace the existing interface with a new set of functions that you can use. These functions will then need to be exported, so you can import them in dotNet.</p>