Converting a C++ .exe project to a dll - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T05:34:57Zhttp://stackoverflow.com/feeds/question/744750http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/744750/converting-a-c-exe-project-to-a-dll1Converting a C++ .exe project to a dllMalfist2009-04-13T17:45:37Z2009-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#7447733Answer by Alan for Converting a C++ .exe project to a dllAlan2009-04-13T17:53:37Z2009-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&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-1Answer by Ash for Converting a C++ .exe project to a dllAsh2009-04-13T17:54:18Z2009-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>