active questions tagged managed - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T20:27:37Zhttp://stackoverflow.com/feeds/tag/managedhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1943830/managing-destructors-of-managed-c-and-unmanaged-c-objects1Managing destructors of managed (C#) and unmanaged (C++) objectsAndrew S.2009-12-22T02:12:54Z2009-12-22T02:47:00Z
<p>I have a managed object in a c# dll that maintains an anonymous integer handle to an unmanaged object in a c++ dll. Inside the c++ dll, the anonymous integer is used in an std::map to retrieve an unmanaged c++ object. Through this mechanism, I can maintain a loose association between a managed and unmanaged object using an anonymous integer handle.</p>
<p>In the finalize method (destructor) of the managed object I have a call into the unmanaged dll to delete the unmanaged object.</p>
<p>All is well as the c# program runs, but I have a problem when the program exits. Becuase I have no control on the order of delete operations on the managed side, the unmanaged dll is deleted from memory BEFORE any managed object. Thus when the managed object's destructor is called (which in turn calls the unmanaged destructor [at least indirectly]), the unmanaged object has already been deleted and the program crashes.</p>
<p>So how can I safely delete a unmanaged object in an external c++ dll that is associated with a managed object in a c# program.</p>
<p>Thanks</p>
<p>Andrew</p>
http://stackoverflow.com/questions/1932914/concepts-of-managed-and-unmanaged-code1Concepts of managed and unmanaged code? [closed]Nick Brooks2009-12-19T13:27:55Z2009-12-19T14:20:57Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/334326/what-is-managed-unmanaged-code-in-c">What is managed/unmanaged code in C#?</a> </p>
</blockquote>
<p>I'm sorry if this was asked before but could someone explain in simple terms what is <strong>managed</strong> code and what is <strong>unmanaged</strong> code and what are the advantages/disadvantages of those things?</p>
<p>Please don't post links to wikipedia becasue I already look there and the definition they give there isn't very clear.</p>
http://stackoverflow.com/questions/1916189/c-create-managed-array-from-pointer0C# -- Create Managed Array from PointerLimited Atonement2009-12-16T17:17:17Z2009-12-16T19:39:44Z
<p>Dear Sirs,</p>
<p>I'm trying to create a Managed Array of doubles from an array of bytes. I have the problem working currently, but I wanted to optimize. Here's some code that I would like to work:</p>
<pre><code>private unsafe static double[] _Get_Doubles(byte[] _raw_data)
{
double[] ret;
fixed (byte* _pd = _raw_data)
{
double* _pret = (double*)_pd;
ret = (double[])*_pret; //FAILURE
}
}
</code></pre>
<p>Please let me know how to cope with these problems.</p>
<p>-Aaron</p>
http://stackoverflow.com/questions/1907275/in-eclipse-cdt-shared-resource-folder-that-is-built-differently-for-the-project0In Eclipse CDT shared resource folder that is built differently for the projectJeff V2009-12-15T12:57:27Z2009-12-15T12:57:27Z
<p>Hi,</p>
<p>I have a set of Eclipse c projects that will all refer to a common shared base of code (a mix of .c and .h files in the same folder) but will be built that code differently on a per project basis.</p>
<p>The common code base may be edited from within each project but these edits will be fixes to be carried across all the projects. The common code will no diverge per project except for build options through defines.</p>
<p>If I create a project for this library it implies a library build with is not what I need. I need the resulting object files to land in the project that they are being built for. So a c/c++ project does not make sense.</p>
<p>The common code will be checked in to a subversion repo (as will each project). I could use "New folder -> Linked resource" but I would prefer to keep the projects independent of the directory structure the developer happens to be using.</p>
<p>Is there a clean way to do this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1896404/fread-speeds-managed-unmanaged0fread speeds managed unmanagedkelton522009-12-13T12:47:20Z2009-12-14T18:26:12Z
<p>Ok, so I'm reading a binary file into a char array I've allocated with malloc.
(btw the code here isn't the actual code, I just wrote it on the spot to demonstrate, so any mistakes here are probably not mistakes in the actual program.) This method reads at about 50million bytes per second.</p>
<h2>main</h2>
<pre><code>char *buffer = (char*)malloc(file_length_in_bytes*sizeof(char));
memset(buffer,0,file_length_in_bytes*sizeof(char));
//start time here
read_whole_file(buffer);
//end time here
free(buffer);
</code></pre>
<h2>read_whole_buffer</h2>
<pre><code>void read_whole_buffer(char* buffer)
{
//file already opened
fseek(_file_pointer, 0, SEEK_SET);
int a = sizeof(buffer[0]);
fread(buffer, a, file_length_in_bytes*a, _file_pointer);
}
</code></pre>
<p>I've written something similar with managed c++ that uses filestream I believe and the function ReadByte() to read the entire file, byte by byte, and it reads at around 50million bytes per second.</p>
<p>Also, I have a sata and an IDE drive in my computer, and I've loading the file off of both, doesn't make any difference at all(Which is weird because I was under the assumption that SATA read much faster than IDE.)</p>
<h1>Question</h1>
<p>Maybe you can all understand why this doesn't make any sense to me. As far as I knew, it should be much faster to fread a whole file into an array, as opposed to reading it byte by byte. On top of that, through testing I've discovered that managed c++ is slower (only noticeable though if you are benchmarking your code and you require speed.)</p>
<h3>SO</h3>
<p>Why in the world am I reading at the same speed with both applications. Also is 50 million bytes from a file, into an array quick?</p>
<p>Maybe I my motherboard is bottle necking me? That just doesn't seem to make much sense eather.</p>
<p>Is there maybe a faster way to read a file into an array?</p>
<p>thanks.</p>
<h2>My 'script timer'</h2>
<p>Records start and end time with millisecond resolution...Most importantly it's <strong>not</strong> a timer</p>
<pre><code>#pragma once
#ifndef __Script_Timer__
#define __Script_Timer__
#include <sys/timeb.h>
extern "C"
{
struct Script_Timer
{
unsigned long milliseconds;
unsigned long seconds;
struct timeb start_t;
struct timeb end_t;
};
void End_ST(Script_Timer *This)
{
ftime(&This->end_t);
This->seconds = This->end_t.time - This->start_t.time;
This->milliseconds = (This->seconds * 1000) + (This->end_t.millitm - This->start_t.millitm);
}
void Start_ST(Script_Timer *This)
{
ftime(&This->start_t);
}
}
#endif
</code></pre>
<h2>Read buffer thing</h2>
<pre><code>char face = 0;
char comp = 0;
char nutz = 0;
for(int i=0;i<(_length*sizeof(char));++i)
{
face = buffer[i];
if(face == comp)
nutz = (face + comp)/i;
comp++;
}
</code></pre>
http://stackoverflow.com/questions/1889952/best-method-of-calling-managed-codec-from-unmanaged-c1Best method of calling managed code(c#) from unmanaged C++DP2009-12-11T18:23:47Z2009-12-14T09:45:43Z
<p>Hello,</p>
<p>We have developed a s/w architecture consisting of set of objects developed in C#. They make extensive use of events to notify the client of changes in status, etc. </p>
<p>The intention originally was to allow legacy code to use these managed objects through COM interop services. That was easy to write in the design specification but, I'm seeing that actually implementing it is more problematic. I've searched for many hours looking for a good sample of event handling using this method. Before we march down that path, I want to make sure that COM interop is the best way to allow legacy code to call our new code. </p>
<p>It appears there are several different options: 1) COM interop, 2) write unmanaged wrapper classes 3) use the /clr compiler switch to enable calling of managed objects, 4) use some sort of reverse pInvoke call. Am I missing any?</p>
<p>Each option will have its benefits & drawbacks and I'm wondering what the best way to go is. Here are specific questions/comments for each</p>
<p>COM INTEROP - It appears event handling is a hurdle. We use events that have variable types as parameters. An event parameter may have an event ID and an object. Based on the event ID, the object will be of a certain type. Can this be handled with COM interop? Many of the objects that are exposed have properties. You can't declare properties in an interface so all properties will need a corresponding get/set method.</p>
<p>WRITE UNMANAGED WRAPPER - I assume this means creating a DLL using the /clr option to allow creating and calling managed objects and exposing unmanaged objects. Would the client of these unmanaged. I haven't done this before. What are benefits/drawbacks of this?</p>
<p>USE THE /CLR SWITCH - I understand this means to add support for managed objects. What are the drawbacks of this approach? Does this option support events as described above? Can we say, "here's the managed library. Use the /clr compiler option with your legacy code and have at it?" I don't know the ramifications of this. Is there a good sample of how this works around? (I'm sure there is, I just haven't found it)</p>
<p>USE A REVERSE PINVOKE - I'm not sure exactly how this would work but, from what I've been able to find, this is not a likely valid solution.</p>
<p>So, what does the decision tree look like to find the correct direction? Any help is appreciated.</p>
<ul>
<li>DP</li>
</ul>
http://stackoverflow.com/questions/1892031/c-cli-managed-thread-cleanup0C++/CLI managed thread cleanupGuillermo Prandi2009-12-12T02:19:29Z2009-12-12T02:19:29Z
<p>Hi. I'm writing a managed C++/CLI library wrapper for the MySQL embedded server. The mysql C library requires me to call mysql_thread_init() for every thread that will be using it, and mysql_thread_end() for each thread that exits after using it.</p>
<p>Debugging any given VB.Net project I can see at least seven threads; I suppose my library will see only one thread if VB doesn't explicitly create worker threads itself (any confirmations on that?). However, I need clients to my library to be able to create worker threads if they need to, so my library must be thread-aware to some degree.</p>
<p>The first option I could think of is to expose some "EnterThread()" and "LeaveThread()" methods in my class, so the client code will explicitly call them at the beginning and before exiting their DoWork() method. This should work if (1) .Net doesn't "magically" create threads the user isn't aware of and (2) the user is careful enough to have the methods called in a try/finally structure of some sort.</p>
<p>However, I don't like it very much to have the user handle things manually like that, and I wonder if I could give her a hand on that matter. In a pure Win32 C/C++ DLL I do have the DllMain DLL_THREAD_ATTACH and DLL_THREAD_DETACH pseudo-events, and I could use them for calling mysql_thread_init() and mysql_thread_end() as needed, but there seem to be no such thing in C++/CLI managed code. At the expense of some performance (not much, I think) I can use TLS for detecting the "usage from a new thread" case, but I can imagine no mechanism for the thread exiting case.</p>
<p>So, my questions are: (1) could .net create application threads without the user being aware of them? and (2) is there any mechanism I could use similar to DLL_THREAD_ATTACH / DLL_THREAD_DETACH from managed C++/CLI?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1883865/why-does-a-net-file-delete-fail-with-uac-and-requireadministratortrue0Why does a .NET File.Delete() fail with UAC and requireAdministrator=True?BerwynVB2009-12-10T20:40:19Z2009-12-10T20:44:24Z
<p>This is a driving me nuts. I have searched all over StackOverflow and read all about UAC. But I'm still running into a problem.</p>
<p>Using VS 2008, I have a simple program that does nothing but this:</p>
<pre><code>File.Delete("c:\windows\fonts\whatever.ttf")
</code></pre>
<p>The EXE has a proper manifest with requireAdministrator=True. When compiled, the app icon receives the shield icon. And when I launch the application, logged in as either an Admin or Standad user, I receive the "Do you want the following program to make changes..." confirmation dialog. Additionally, I use a code signing cert on the EXE.</p>
<p>When running the app, I get the following behaviors:</p>
<p>When I run the application when logged in as an Administrator, the file is deleted.</p>
<p>However, when logged in as a Standard user, I get a UAC prompt and enter in an Admin password, but I get a "file access is denied" error when the delete executes.</p>
<p>Can someone explain this to me? I thought that the requiresAdministrator=True in the manifest elevates the process. But I still can't delete a system file.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1873339/c-cli-casting-from-unmanaged-enum-to-managed-enum0C++/CLI : Casting from unmanaged enum to managed enumLopper2009-12-09T11:38:49Z2009-12-10T04:54:26Z
<p>What is the correct way of casting (in C++/CLI) from a native code <code>enum</code> to a managed code <code>enum</code> which contain the same <code>enum</code> values? Is there any difference with using the C# way of casting like for example <code>(int)</code> in C++/CLI.</p>
http://stackoverflow.com/questions/1401127/class-not-registered-when-trying-to-call-a-managed-c-library-from-unmanaged0Class Not Registered.... when trying to call a managed C# library from unmanaged C++DJ Burb2009-09-09T18:01:51Z2009-11-29T19:00:04Z
<p>Hey everyone,</p>
<p>I have a C# library that I am using for a COM object in unmanaged C++ code. I registered the library using Visual Studio's checkbox "Register For Com Interop" and set ComVisible to true.</p>
<p>imported the tlb to the C++ app..... when I run it, I get a "Class Not Registered"....</p>
<p>This has worked before, but this started happening after I moved the directory of my C# project to a different location.... yes I did re-register the library after I moved it.</p>
<p>I've removed all references from the registry... I 've even tried doing a gacutil.exe /i on it... no dice.</p>
<p>Anyone know how to fix this?</p>
http://stackoverflow.com/questions/1802690/directx-managed-or-unmanaged1DirectX managed or unmanaged?Anurag2009-11-26T09:53:19Z2009-11-26T09:57:06Z
<p>I need basic information about DirectX. Is it a managed API or Unmanaged? Can someone provide me some link etc. explaining this?</p>
http://stackoverflow.com/questions/1755816/c-delegate-with-string-reference-to-c-callback0C# delegate with string reference to c++ callbackElad2009-11-18T13:03:02Z2009-11-19T22:46:14Z
<p>I wrote a C# application that uses an unmanaged c++ dll via managed c++ dll.
In the unmanaged dll, there's a callback that one of its params is std::string &.</p>
<p>I can't seem to find the right way to wrap this with the managed dll.
When I use String ^, the callback works, but the C# application does not get anything in the string.
When I used String ^%, things started to crash in other places that does not seem to be related (maybe memory corruption).</p>
<p>So my question is, what's the right way to do this?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1637887/how-can-i-remote-debug-on-another-workgroup-machine0How can I remote debug on another workgroup machine?galaktor2009-10-28T15:07:28Z2009-11-18T15:03:34Z
<p>I have used the "Attach to process" function within VS 2008 many times, but never actually on a remote machine. Now I have to do it and I already read a bunch about it on the net. After playing around a bit I've reached a point where I am not quite sure how to proceed. First of all, here's a quick list of what I've done so far:</p>
<p>Test machine (Win XP Pro SP3 x86):</p>
<ul>
<li>Install Msvsmon</li>
<li>Change local policy for local accounts to "Classic - local users authenticate as themselves"</li>
<li>Deactivated the windows firewall (yeah, not a great idea, but to avoid any port problems)</li>
<li>Planted a copy of the application that is to be debugged including pdb files</li>
<li>Created a user account that has the same name and password as on my dev machine</li>
<li>Made sure the new created account is admin and has permission for remote debugging</li>
</ul>
<p>VS host machine (Vista Home Premium x64 SP2, VS 2008 pro SP1)</p>
<ul>
<li>Deactivate firewall</li>
<li>Made sure I can access the test machine via UNC path (works)</li>
</ul>
<p>So, network communication works. Firewalls are off. Msvsmon is running on the test machine. But when I try to connect via "Attach to process" and enter the computer name of the test machine, I get this (translated from German):</p>
<blockquote>
<p>The connection to the visual studio
remote debug monitor with the name
"TESTMACHINE" could not be
established. Visual Studio remote
debugger does not support that windows
version.</p>
</blockquote>
<p>It took a while until I found out that "windows version not supported" actually is trying to say "authentification error".</p>
<p>I even tried connection using "Remote without authentification" instead of "Standard", even though it won't work for me since I need to debug managed code. So I adjusted Msvsmon accordingly and the connection worked (I could select processes, but of course I could not really debug). So that makes me believe I'm having an authentification problem.</p>
<p><strong>So finally, my question:</strong></p>
<p>How do I set up users/authentification on both machines so I can remotely debug managed code within the same workgroup?</p>
<p>The local user names are the same, but how do I allow "DEVMACHINE\me" to remote debug on a machine where "me" is actually "TESTMACHINE\me"?</p>
<p>Thanks ;)</p>
http://stackoverflow.com/questions/620733/memory-leak-in-c11Memory Leak in C#Joan Venge2009-03-06T22:38:57Z2009-11-17T18:39:03Z
<p>Is it ever possible in a managed system to leak memory when you make sure that all handles, things that implement <code>IDispose</code> are disposed? </p>
<p>Would there be cases where some variables are left out?</p>
http://stackoverflow.com/questions/1743414/switching-to-wpf-is-it-time4Switching to WPF. Is it time?Ra2009-11-16T16:53:09Z2009-11-16T17:57:45Z
<p>I'm considering switching from MFC to WPF.</p>
<p>My first concern is that there are too many users who don't have .NET with WPF installed yet. Can anybody point to a source containing the WPF penetration numbers?</p>
<p>My second concern is speed. </p>
<p>Any other considerations?</p>
http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat4How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?Chris Pietschmann2008-10-30T22:39:03Z2009-11-10T23:09:40Z
<p>Sometimes it's difficult to describe some of the things that "us programmers" may think are simple to non-programmers and management types.</p>
<p>So...</p>
<p>How would you describe the difference between Managed Code (or Java Byte Code) and Unmanaged/Native Code to a Non-Programmer?</p>
http://stackoverflow.com/questions/1302484/screen-scraping-a-mainframe-screen-in-c-without-3rd-party-utilities0Screen scraping a mainframe screen in C# *without* 3rd Party UtilitiesCaveatrob2009-08-19T20:34:02Z2009-11-06T02:37:53Z
<p>I'm looking to screen scrape a 3270 mainframe application in C#, but I've got to do so without Attachmate or other 3rd party plugins. Are there free managed libraries to do so in C#?</p>
http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java32Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?polk2009-03-08T04:53:16Z2009-11-04T16:50:02Z
<p>Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?</p>
http://stackoverflow.com/questions/63379/passing-impersonation-token-on-a-managed-thread-to-an-unmanaged-thread2Passing impersonation token on a Managed Thread to an Unmanaged ThreadJason2008-09-15T14:24:49Z2009-10-27T20:30:03Z
<p>I have a case where a VB.Net winforms app needs to play WMV files from across the network. The user running the app cannot be given direct access to the network share. Through impersonation, I can see that the files exist (without impersonation, File.Exists returns false for the files on the network share). When I then try to load the file into a Windows Media Player control, the control just remains black. I have deduced that when the Windows Media Player control is loaded into memory, it is running on a separate unmanaged thread than the .Net managed thread. Is there any way to pass that security token from the managed thread to the unmanaged thread? Am I missing something completely?</p>
http://stackoverflow.com/questions/1332565/changes-not-allowed-when-unmanaged-debugging-is-enabled1Changes not allowed when unmanaged debugging is enabled?acidzombie242009-08-26T05:47:02Z2009-10-14T12:49:07Z
<p>I get the error </p>
<blockquote>
<p>changes not allowed when unmanaged debugging is enabled</p>
</blockquote>
<p>Actually I get the below message but Google doesn't return many results</p>
<blockquote>
<p>changes are not allowed when unmanaged debugging is enabled</p>
</blockquote>
<p>What does this mean? How do I fix it? Note this is an ASP.NET project. Checkmarking Edit and Continue does not make this error go away.</p>
http://stackoverflow.com/questions/852607/howto-call-managed-c-interface-from-unmanged-c-on-windowsce-compact-framewor3HOWTO: Call Managed C# Interface From Unmanged C++ On WindowsCE Compact Frameworkgozer612009-05-12T12:49:50Z2009-10-08T13:20:46Z
<p>I have extensive unmanaged Windows CE 5 C++ code that provides a UI that I want to use in a new product by combining it with a large amount of newer business and communications logic written in managed C# on Windows CE 6 and the Compact Framework.</p>
<p>The UI may know about the business logic, but I want the business logic ignorant of the UI such that I can later replace it with a managed version, or any other UI that I choose as a front-end.</p>
<p>I found an article that describes how to use COM as the bridge in the Windows world, but I'm having difficulty applying it in the .NET CF under WinCE. In the past, I've imported type libraries and used COM calls (CoInitialize(), CoCreateInstance()) to obtain pointers to interfaces on other Windows platforms, and that's the strategy I'm pursuing at the moment: using COM directly in the unmanaged C++ library to access the C# interfaces in my managed library, assuming that the same facility is provided in WinCE.</p>
<p>Here's my problem: the typelib. It's not available from my managed C# library as I've used it in the past via a '#import "SomeCPPLibrary.dll"' statement. I believe it's buried in the .dll assembly, stored in a different manner than it has been in the past and hence, not directly available through a #import of the library itself. I think that I can #import a typelib, but I cannot find a way to extract the typelib from my managed .dll, and while I might be able to hack together an interface definition file (.idl) and use the platform's midl.exe to generate a .tlb from it, there's no guarantee that my .idl, and hence, resulting .tlb, would really match what is in my C# .dll. I don't even know if the platform midl.exe works in this manner but assume that it does.</p>
<ol>
<li><p>Am I barking up the wrong tree? Is it possible to use a managed C# interface in unmanaged C++ through a corresponding COM interface?</p></li>
<li><p>Does setting the [assembly: ComVisible(true)] attribute in its AssemblyInfo.cs file make all interfaces in the managed assembly available through COM in the unmanaged world via the GUID the AssemblyInfo.cs defines, or do I have to do something more?</p></li>
<li><p>How do I get the typelib out of the managed .dll so that my unmanaged C++ library can #import it?</p></li>
<li><p>I tried adding my managed C# library project as a reference in the unmanaged C++ library project, but that didn't seem to help. Is such a reference relevant at all in this situation?</p></li>
<li><p>Is there a better approach to solving the basic problem of calling managed C# code from the unmanaged C++ world? Something I just read about here is a mixed mode libarary with a managed translation layer to bridge the unmanaged/managed gap. I'm not sure that is a good strategy as call response speed is an important factor, but might it be better in the long run as I plan to rewrite the UI to managed C# at some point, and thus puts all the effort on the throw-away UI rather than mucking with the more permanent business/comms logic? Regardless of the answer to this question, I'd still like to solve the problem of using COM, if for no other reason than curiosity.</p></li>
</ol>
<p>Thanks for any insight you (collectively) can provide.</p>
<pre><code>james
</code></pre>
http://stackoverflow.com/questions/1527543/avoid-loading-net-dlls-in-a-c-cli-project1Avoid loading .Net Dlls in a C++/CLI project?opc2009-10-06T19:19:47Z2009-10-06T19:23:12Z
<p>I have a project written in C++/CLI. Some of the types there are in managed code, and some are in completely native code. Let's say I have the produced DLL on a machine that dosen't have any version of the .Net framework installed, is there a way that another, native application will link with my "mixed-mode" Dll and use only the native types? I've noticed that the minute I add the "/clr" switch, my Dll automatically depends on several .Net Framework Dlls (mscorjit, mscoree etc.), and when I actually try to use the 100% native types defined in it, the application still tries to load those .Net Framework Dlls (even though I don't use the framework in that part of the code).<br />
So, is it possible to avoid loading those Dlls in such case? (as I see it, the other option is to create another, native project, that will contain all of the native types, without the managed ones).</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1503266/how-do-i-change-the-lookup-path-for-net-libraries-referenced-via-using-in-manag1How do I change the lookup path for .NET libraries referenced via #using in Managed C++?Frerich Raabe2009-10-01T11:03:44Z2009-10-06T10:23:52Z
<p>I developed a DLL in Managed C++ which loads some plugins (implemented in any .NET language) at runtime using <a href="http://msdn.microsoft.com/en-us/library/system.reflection.assembly.loadfile.aspx" rel="nofollow">System.Reflection.Assembly.LoadFile</a>. The interface which is implemented by all plugins is implemented in C#. It's used by the Managed C++ code like this:</p>
<pre><code>#using <IMyPluginInterface.dll> // Make the 'IMyPluginInterface' type available
ref class PluginManager {
List<IMyPluginInterface ^> ^m_plugins;
// Load all plugins in a well-known directory.
void load() {
for ( string dllFile in Directory.GetFiles( .., "*.dll" ) ) {
// Lookup the type of the plugin object using Reflection
Type pluginType = ...;
// Finally, instantiate the plugin and add it to our list.
m_plugins.Add( (IMyPluginInterface ^)Activator.CreateInstance( pluginType ) );
}
}
}
</code></pre>
<p>Loading the plugins works well; the problem I'm facing is that at runtime, the <code>IMyPlugnInterface.dll</code> file might not be in the same directory as the Managed C++ DLL. This means that the 'IMyPluginInterface' type is not available at runtime, and an exception is thrown.</p>
<p>I previously asked whether it was maybe possible to influence the lookup path used when resolving DLLs referenced via the <code>#using</code> statement. Unfortunately, this didn't yield any result.</p>
<p>Is there maybe a different approach to this? Can types which are referenced via <code>#using</code> be compiled into the Managed C++ DLL? Maybe anybody else has an entirely different solution?</p>
http://stackoverflow.com/questions/666799/embedding-unmanaged-dll-into-a-managed-c-dll10Embedding unmanaged dll into a managed C# dllLaurent2009-03-20T16:02:39Z2009-09-30T20:32:42Z
<p>I have a managed C# dll that uses an unmanaged C++ dll using DLLImport. All is working great.
However, I want to embed that unmanaged DLL inside my managed DLL as explain by Microsoft there:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.dllimportattribute.dllimportattribute.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.dllimportattribute.dllimportattribute.aspx</a></p>
<p>So I added the unmanaged dll file to my managed dll project, set the property to 'Embedded Resource' and modify the DLLImport to something like</p>
<p>[DllImport("Unmanaged Driver.dll, Wrapper Engine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", CallingConvention = CallingConvention.Winapi)]</p>
<p>where
'Wrapper Engine' is the assembly name of my managed DLL
'Unmanaged Driver.dll' is the unmanaged DLL</p>
<p>When I run, I get:
Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))</p>
<p>I saw from MSDN and from <a href="http://blogs.msdn.com/suzcook/" rel="nofollow">http://blogs.msdn.com/suzcook/</a> that's supposed to be possible...</p>
<p>Any idea?
Thanks</p>
http://stackoverflow.com/questions/1478802/using-windbg-sos-to-debug-managed-native-callstack-i-get-failed-to-request-th0Using WinDbg/SOS to debug managed->native callstack. I get "Failed to request ThreadStore"Corey Trager2009-09-25T18:10:20Z2009-09-26T07:06:57Z
<p>MyManagedFunc in managed.exe calls into MyUnmanagedFunc() in unmanaged.dll. I produce a minidump in unmanaged.dll using Win32. SetUnhandledExceptionFilter. I can see MyUnmanagedFunc in the callstack, but nothing usefull in the managed side.</p>
<p>I'm supposed to be able to use WinDbg and SOS.dll to see the managed calls, right? Below is my WinDbg session. What am I doing wrong?</p>
<pre>
Executable search path is:
Windows XP Version 2600 (Service Pack 3) MP (4 procs) Free x86 compatible
Product: WinNt, suite: SingleUserTS
Machine Name:
Debug session time: Fri Sep 25 12:59:28.000 2009 (GMT-5)
System Uptime: not available
Process Uptime: 0 days 0:00:08.000
.......................................
This dump file has an exception of interest stored in it.
The stored exception information can be accessed via .ecxr.
(da0.1340): Integer divide-by-zero - code c0000094 (first/second chance not available)
eax=03a50000 ebx=001a2578 ecx=00000007 edx=7c90e514 esi=001a2550 edi=001a25a8
eip=7c90e514 esp=0012dd24 ebp=0012dd34 iopl=0 nv up ei pl zr na pe nc
cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00000246
*** ERROR: Symbol file could not be found. Defaulted to export symbols for ntdll.dll -
ntdll!KiFastSystemCallRet:
7c90e514 c3 ret
*** ERROR: Symbol file could not be found. Defaulted to export symbols for kernel32.dll -
0:000> .loadby sos mscorwks
0:000> !threads
*** ERROR: Symbol file could not be found. Defaulted to export symbols for mscorwks.dll -
PDB symbol for mscorwks.dll not loaded
Failed to request ThreadStore
0:000> .ecxr
eax=0000000c ebx=00160c20 ecx=00000000 edx=00000000 esi=0012efb8 edi=0012eea4
eip=01201712 esp=0012edd8 ebp=0012eea4 iopl=0 nv up ei pl nz na pe nc
cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00010206
*** WARNING: Unable to verify checksum for NativeDLL.dll
NativeDLL!MyBad+0x22:
01201712 f77d0c idiv eax,dword ptr [ebp+0Ch] ss:0023:0012eeb0=00000000
*** WARNING: Unable to verify checksum for System.Windows.Forms.ni.dll
*** ERROR: Module load completed but symbols could not be loaded for System.Windows.Forms.ni.dll
</pre>
http://stackoverflow.com/questions/1411311/lightweight-x86-emulator-for-net-executing-x86-code-in-a-managed-environment1Lightweight x86 Emulator for .NET / Executing x86 code in a managed environmentDaniel Oberlin2009-09-11T14:42:06Z2009-09-11T14:50:08Z
<p>Our company is migrating its entire product line from a C++ codebase to the .NET Framework. We have a very large codebase, and this migration is being done incrementally over the course of many years.</p>
<p>We would like to enjoy some of the benefits of pure managed code, such as Silverlight, but there are many legacy C++/x86 modules that will take time for us to port to .NET.</p>
<p>One solution would be for us to load these modules into a lightweight x86 emulator running in a small memory sandbox in the .NET Framework. This would allow us to call into legacy x86 DLL code while maintaining a pure managed application.</p>
<p>Does anyone know of such a project?</p>
<p>Sincerely,</p>
<p>Dan</p>
http://stackoverflow.com/questions/394816/how-to-get-parent-process-in-net-in-managed-way0How to get parent process in .NET in managed wayabatishchev2008-12-27T08:48:04Z2009-09-08T21:44:37Z
<p>I was looking a lot for method to get parent process in .NET, but found only P/Invoke way.</p>
http://stackoverflow.com/questions/1376526/memory-usage-of-dotnet-app0Memory usage of DotNET appDavid Rutten2009-09-03T23:38:26Z2009-09-04T00:15:13Z
<p>My application (DotNET) runs as a plug-in inside a C++ standalone app that exposes a C++/CLI SDK.</p>
<p>It is very easy for my users to generate large amounts of data and I'd like to offer an abort option if the memory consumption of my plug-in + the base application reaches -say- 90% of the legal maximum.</p>
<p>How can I measure the total memory consumption (ideally for both the managed <em>and</em> unmanaged code) and how do I know how much memory windows allows for the current application?</p>
http://stackoverflow.com/questions/1349530/loader-lock-regsvr32-r6033-error-with-managed-c-dll1Loader lock (regsvr32 R6033 error) with managed C++ dllflatline2009-08-28T21:40:45Z2009-08-28T22:54:52Z
<p>I have a C++ dll which implements several COM interfaces, that I'm trying to migrate to managed C++. I set the /clr compiler flag and changed the Runtime Library property from /MT to /MD to avoid the conflict between these two flags, but that's all I've changed. When it attempts to register the dll during the build process, I get the following error:</p>
<p><em>R6033 - Attempt to use MSIL code from this assembly during native code initialization
This indicates a bug in your application. It is most likely the result of calling an MSIL-compiled (/clr) function from a native constructor or from DllMain.</em></p>
<p>I read about Loader Lock and can't figure it out - I have not added a single call to any managed code. Here's the entire body of the DllMain procedure:</p>
<p>[Edit - per comment below, I added #pragma unmanaged to the top of the cpp file with no improvement. The Module init is all code contained in the ATL libraries from what I can tell.]</p>
<pre><code>extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
lpReserved;
if (dwReason == DLL_PROCESS_ATTACH)
{
_Module.Init(ObjectMap, hInstance, &MYGUID);
DisableThreadLibraryCalls(hInstance);
}
else if (dwReason == DLL_PROCESS_DETACH)
_Module.Term();
return TRUE; // ok
}
</code></pre>
http://stackoverflow.com/questions/1345377/unmanaged-and-managed-memory1Unmanaged and Managed MemorySolitaire2009-08-28T06:40:33Z2009-08-28T07:15:57Z
<p>what exactly these unmanaged and managed memory is?
can anybody explain me in brief?</p>