active questions tagged unmanaged - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T06:03:23Z http://stackoverflow.com/feeds/tag/unmanaged http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/914227/problem-only-in-vista-net-call-unmanaged-dllshell32-dll-function-shemptyre 0 Problem only in Vista (.net): call unmanaged dll(Shell32.dll, function: SHEmptyRecycleBin) from thread Samir 2009-05-27T06:18:40Z 2009-12-01T21:00:08Z <p><strong>***<em></strong>Platform: in Vista(ultimate or home/premium) it does not work, other OS(xp, windows7) it works</em><strong>******</strong></p> <p>I'm emptying recycle bin using c++.net(or c#.net) inside a thread. When i do this straight (without thread) it works. But if thread used it doesn't. Please watch the code snippet below:</p> <pre><code>namespace EmptyRecycleBin_C{ enum RecycleFlags { SHERB_NOCONFIRMATION = 0x00000001, SHERB_NOPROGRESSUI = 0x00000002, SHERB_NOSOUND = 0x00000004 }; public ref class Form1 : public System::Windows::Forms::Form{ [DllImport("Shell32.dll",CharSet=CharSet::Unicode)] static System::UInt32 SHEmptyRecycleBin(IntPtr hwnd, String^ pszRootPath, RecycleFlags dwFlags); private: void button1_Click(System::Object^ sender, System::EventArgs^ e) { Thread^ th = gcnew System::Threading::Thread(gcnew ThreadStart(this, &amp;Form1::doEmpty)); th-&gt;Start(); //this-&gt;doEmpty(); // this line works just fine } private: void doEmpty() { try{ SHEmptyRecycleBin(IntPtr::Zero, String::Empty, RecycleFlags::SHERB_NOCONFIRMATION); }catch(Exception^ ex) {Diagnostics::Debug::Write(ex-&gt;Message);} } }; } </code></pre> <p>whats the problem here...?</p> http://stackoverflow.com/questions/1827102/managed-c-to-form-a-bridge-between-c-and-c 2 Managed C++ to form a bridge between c# and C++ PSU_Kardi 2009-12-01T15:55:50Z 2009-12-01T17:09:56Z <p>I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's been a while.</p> <p>Anyway, I'm doing the reverse of what most people do. Calling C# code from C++. I've done some research online and it seems like I need to create some managed C++ to form a bridge. Use __declspec(dllexport) and then create a dll from that and use the whole thing as a wrapper.</p> <p>But my problem is - I'm really having a hard time finding examples. I found some basic stuff where someone wanted to use the C# version to String.ToUpper() but that was VERY basic and was only a small code snippet.</p> <p>Anyone have any ideas of where I can look for something a bit more concrete? Note, I do NOT want to use COM. The goal is to not touch the C# code at all.</p> http://stackoverflow.com/questions/1508082/how-is-a-securestring-marshalled-to-unmanaged-code 1 How is a securestring marshalled to unmanaged code? Keith Moore 2009-10-02T07:00:47Z 2009-12-01T02:45:57Z <p>What prompted this question: I'm trying to change the account under which a windows service runs. I decided to use the win32 api rather than WMI and started looking at ChangeServiceConfig.</p> <p>I thought I could simply use the SecureString type in the unmanaged method signature and it would work fine. Hmmm, not quite. This made me wonder, does anyone know what native (win32) type the SecureString class is marshalled as (by default) to unmanaged code?</p> http://stackoverflow.com/questions/1821081/sorting-a-listview-win32-c 0 Sorting a listview (Win32/C++) Zenox 2009-11-30T17:04:23Z 2009-11-30T17:33:54Z <p>I'm trying to sort a listview when the user clicks on the column header.</p> <p>I am catching the LVN_COLUMNCLICK notification like so:</p> <pre><code> case LVN_COLUMNCLICK: { NMLISTVIEW* pListView = (NMLISTVIEW*)lParam; BOOL test = ListView_SortItems ( m_hDuplicateObjectsList, ListViewCompareProc, pListView-&gt;iSubItem ); break; } </code></pre> <p>However it seems to fail. My test variable is FALSE and my ListViewCompareProc never gets hit (it has a simple return 1 while I am trying to hit a debug point inside of it).</p> <p>Is there something I am missing for sorting a listview?</p> http://stackoverflow.com/questions/1401127/class-not-registered-when-trying-to-call-a-managed-c-library-from-unmanaged 0 Class Not Registered.... when trying to call a managed C# library from unmanaged C++ DJ Burb 2009-09-09T18:01:51Z 2009-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/1596363/system-wide-shell-hook-from-net-using-unmanaged-dll 0 System Wide Shell Hook from .NET using Unmanaged DLL Lusid 2009-10-20T18:07:47Z 2009-11-28T14:31:27Z <p>Hello everyone,</p> <p>I have used the code supplied in the following CodeProject article in the past with success, but it only seems to partially work on Vista/7 (I'm guessing because of UAC). It works for the current thread, but it doesn't pick up system wide activity. I've tried adding requireAdministrator in the manifests and signing both the unmanaged and managed assemblies, and that doesn't appear to help.</p> <p><a href="http://www.codeproject.com/KB/system/WilsonSystemGlobalHooks.aspx?msg=2973494" rel="nofollow">Using Window Messages to Implement Global System Hooks in C#</a></p> <p>My main goal is to use SetWindowsHookEx to catch the HSHELL_WINDOWCREATED and HSHELL_WINDOWDESTROYED messages in the unmanaged assembly, and notify the C# application so that it can use the information in real time. It basically just needs to know whenever a window is created or destroyed in the system.</p> <p>I also found an example application that is pure C/C++ that works just fine in Vista/7, but I really don't want to have to write the entire application in C/C++ as I prefer C#.</p> <p><a href="http://www.codeguru.com/forum/showpost.php?p=908859&amp;postcount=8" rel="nofollow">System Wide Hook Example that Works</a></p> <p>Anyone know how to fix the code in the first CodeProject article so that it works on Vista/7 as well? Or have any other examples of ways I can do this without creating timers and similar hacks in C#?</p> <p>Thanks, Marc</p> http://stackoverflow.com/questions/1803989/setting-a-column-style-unmanaged-c 1 Setting a column style? (Unmanaged c++) Zenox 2009-11-26T14:29:25Z 2009-11-28T02:01:17Z <p>I'm currently able to set a listview style VIA the ListView_SetExtendedListViewStyle method, however this makes all columns have the same style. My goal is to only modify one column (to basically have the LVS_EX_UNDERLINEHOT|LVS_EX_UNDERLINECOLD|LVS_EX_TWOCLICKACTIVATE style).</p> <p>Is there a way to modify the style of only one column and not the entire table?</p> <p>Edit: Or even a way to custom draw the cell?</p> http://stackoverflow.com/questions/1809470/clr-internals-rotor-shared-source-cli-2-0-book-release-date 0 CLR internals / Rotor / Shared Source CLI 2.0 Book release date? Ian Gibson 2009-11-27T15:51:31Z 2009-11-27T17:42:35Z <p>Is anyone aware of if/when this will actually be released as hard/soft back? A draft can be downloaded from Ted Newards <a href="http://blogs.tedneward.com/2009/05/27/SSCLI+20+Internals.aspx" rel="nofollow">blog</a> but I can't seem to find anything relating to a release date.</p> http://stackoverflow.com/questions/1802690/directx-managed-or-unmanaged 1 DirectX managed or unmanaged? Anurag 2009-11-26T09:53:19Z 2009-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/1799507/combo-box-inside-of-list-control-unmanaged-c -1 Combo box inside of list control? (Unmanaged C++) Zenox 2009-11-25T19:49:02Z 2009-11-25T20:37:10Z <p>I'm using unmanaged C++ and I was wondering if I could embed a combo box inside a column of my List View. I have tried googling for information, however I keep finding C# articles on the subject.</p> <p>It seems like the LVCOLUMN's mask can support text and images but I am not finding anything about controls.</p> <p>Any ideas on the subject would be great.</p> http://stackoverflow.com/questions/1791377/netusermodalsget-returns-strings-incorrectly-for-c-net 0 NetUserModalsGet() returns strings incorrectly for C#.NET JCCyC 2009-11-24T16:51:48Z 2009-11-25T20:31:04Z <p><strong>EDIT:</strong> Yet another followup at <a href="http://stackoverflow.com/questions/1799742/shouldnt-netusermodalsget-tell-me-what-domain-a-machine-is-part-of-and-where">http://stackoverflow.com/questions/1799742/shouldnt-netusermodalsget-tell-me-what-domain-a-machine-is-part-of-and-where</a></p> <p>Thanks to Gonzalo's help, I'm able to <a href="http://stackoverflow.com/questions/1790567/how-to-call-netusermodalsget-from-c-net">use the NetUserModalsGet() from C#</a>. But there's still some kinks: the string members (<code>usrmod1_primary</code> and <code>usrmod2_domain_name</code>) come out messed up. Here's the code:</p> <pre><code>[DllImport("netapi32.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall, SetLastError = true)] public static extern uint NetUserModalsGet( string server, int level, out IntPtr BufPtr ); [DllImport("netapi32.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall, SetLastError = true)] public static extern uint NetApiBufferFree( IntPtr bufptr ); public struct USER_MODALS_INFO_0 { public uint usrmod0_min_passwd_len; public uint usrmod0_max_passwd_age; public uint usrmod0_min_passwd_age; public uint usrmod0_force_logoff; public uint usrmod0_password_hist_len; }; public struct USER_MODALS_INFO_1 { public uint usrmod1_role; public string usrmod1_primary; }; public struct USER_MODALS_INFO_2 { public string usrmod2_domain_name; public uint usrmod2_domain_id; }; public struct USER_MODALS_INFO_3 { public uint usrmod3_lockout_duration; public uint usrmod3_lockout_observation_window; public uint usrmod3_lockout_threshold; }; ... uint retVal; IntPtr myBuf; USER_MODALS_INFO_0 myInfo0 = new USER_MODALS_INFO_0(); USER_MODALS_INFO_1 myInfo1 = new USER_MODALS_INFO_1(); USER_MODALS_INFO_2 myInfo2 = new USER_MODALS_INFO_2(); USER_MODALS_INFO_3 myInfo3 = new USER_MODALS_INFO_3(); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 0, out myBuf); if (retVal == 0) { myInfo0 = (USER_MODALS_INFO_0)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_0)); myResults += String.Format("usrmod0_force_logoff={0}\nusrmod0_max_passwd_age={1}\nusrmod0_min_passwd_age={2}\nusrmod0_min_passwd_len={3}\nusrmod0_password_hist_len={4}\n", myInfo0.usrmod0_force_logoff.ToString("X8"), myInfo0.usrmod0_max_passwd_age.ToString("X8"), myInfo0.usrmod0_min_passwd_age.ToString("X8"), myInfo0.usrmod0_min_passwd_len.ToString("X8"), myInfo0.usrmod0_password_hist_len.ToString("X8") ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 1, out myBuf); if (retVal == 0) { myInfo1 = (USER_MODALS_INFO_1)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_1)); myResults += String.Format("usrmod1_primary={0}\nusrmod1_role={1}\n", myInfo1.usrmod1_primary, myInfo1.usrmod1_role.ToString("X8") ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 2, out myBuf); if (retVal == 0) { myInfo2 = (USER_MODALS_INFO_2)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_2)); myResults += String.Format("usrmod2_domain_id={0}\nusrmod2_domain_name={1}\n", myInfo2.usrmod2_domain_id.ToString("X8"), myInfo2.usrmod2_domain_name ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 3, out myBuf); if (retVal == 0) { myInfo3 = (USER_MODALS_INFO_3)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_3)); myResults += String.Format("usrmod3_lockout_duration={0}\nusrmod3_lockout_observation_window={1}\nusrmod3_lockout_threshold={2}\n", myInfo3.usrmod3_lockout_duration.ToString("X8"), myInfo3.usrmod3_lockout_observation_window.ToString("X8"), myInfo3.usrmod3_lockout_threshold.ToString("X8") ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); </code></pre> <p>What I get as a result is:</p> <pre><code>usrmod0_force_logoff=FFFFFFFF usrmod0_max_passwd_age=00375F00 usrmod0_min_passwd_age=00000000 usrmod0_min_passwd_len=00000000 usrmod0_password_hist_len=00000000 retVal=0 usrmod1_primary= usrmod1_role=00000003 retVal=0 usrmod2_domain_id=08C409B0 usrmod2_domain_name=M retVal=0 usrmod3_lockout_duration=0000012C usrmod3_lockout_observation_window=0000012C usrmod3_lockout_threshold=00000000 retVal=0 </code></pre> <p>All of that except <code>usrmod1_primary</code> and <code>usrmod2_domain_name</code> makes sense. The tested machine is a member of a domain, whose name <em>does</em> start with an M. I smell some Unicode hijinx, but I can't see what's wrong.</p> http://stackoverflow.com/questions/1799742/shouldnt-netusermodalsget-tell-me-what-domain-a-machine-is-part-of-and-where 0 Shouldn't NetUserModalsGet() tell me what domain a machine is part of, and where the PDC is? JCCyC 2009-11-25T20:29:56Z 2009-11-25T20:29:56Z <p>This question is third on a series. Thanks to <a href="http://stackoverflow.com/questions/1790567/how-to-call-netusermodalsget-from-c-net">Gonzalo</a> and <a href="http://stackoverflow.com/questions/1791377/netusermodalsget-returns-strings-incorrectly-for-c-net">Mattias S</a> for helping me work out the kinks of calling <code>NetUserModalsGet()</code> from C#. This question, unlike the others, isn't really C# specific -- I think.</p> <p>Here's the working code with which I can call <code>NetUserModalsGet()</code> from C# on a remote machine. It works well, but according to the documentation <code>usrmod1_primary</code> and <code>usrmod2_domain_name</code> should give me the address of the domain controller, and the name of the domain the machine is a member of.</p> <p>Instead, I get a blank string for <code>usrmod1_primary</code> and the machine name for <code>usrmod2_domain_name</code> -- it's as if the machine isn't in a domain. Am I looking for information in the wrong place?</p> <pre><code>[DllImport("netapi32.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall)] public static extern uint NetUserModalsGet( string server, int level, out IntPtr BufPtr ); [DllImport("netapi32.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall)] public static extern uint NetApiBufferFree( IntPtr bufptr ); [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)] public struct USER_MODALS_INFO_0 { public uint usrmod0_min_passwd_len; public uint usrmod0_max_passwd_age; public uint usrmod0_min_passwd_age; public uint usrmod0_force_logoff; public uint usrmod0_password_hist_len; }; [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)] public struct USER_MODALS_INFO_1 { public uint usrmod1_role; public string usrmod1_primary; }; [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)] public struct USER_MODALS_INFO_2 { public string usrmod2_domain_name; public IntPtr usrmod2_domain_id; }; [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Unicode)] public struct USER_MODALS_INFO_3 { public uint usrmod3_lockout_duration; public uint usrmod3_lockout_observation_window; public uint usrmod3_lockout_threshold; }; ... uint retVal; IntPtr myBuf; USER_MODALS_INFO_0 myInfo0 = new USER_MODALS_INFO_0(); USER_MODALS_INFO_1 myInfo1 = new USER_MODALS_INFO_1(); USER_MODALS_INFO_2 myInfo2 = new USER_MODALS_INFO_2(); USER_MODALS_INFO_3 myInfo3 = new USER_MODALS_INFO_3(); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 0, out myBuf); if (retVal == 0) { myInfo0 = (USER_MODALS_INFO_0)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_0)); myResults += String.Format("usrmod0_force_logoff={0}\nusrmod0_max_passwd_age={1}\nusrmod0_min_passwd_age={2}\nusrmod0_min_passwd_len={3}\nusrmod0_password_hist_len={4}\n", myInfo0.usrmod0_force_logoff.ToString("X8"), myInfo0.usrmod0_max_passwd_age.ToString("X8"), myInfo0.usrmod0_min_passwd_age.ToString("X8"), myInfo0.usrmod0_min_passwd_len.ToString("X8"), myInfo0.usrmod0_password_hist_len.ToString("X8") ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 1, out myBuf); if (retVal == 0) { myInfo1 = (USER_MODALS_INFO_1)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_1)); myResults += String.Format("usrmod1_primary={0}\nusrmod1_role={1}\n", myInfo1.usrmod1_primary, myInfo1.usrmod1_role.ToString("X8") ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 2, out myBuf); if (retVal == 0) { myInfo2 = (USER_MODALS_INFO_2)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_2)); myResults += String.Format("usrmod2_domain_id={0}\nusrmod2_domain_name={1}\n", myInfo2.usrmod2_domain_id.ToString("X8"), myInfo2.usrmod2_domain_name ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); retVal = NetUserModalsGet("\\\\" + tbHost.Text, 3, out myBuf); if (retVal == 0) { myInfo3 = (USER_MODALS_INFO_3)Marshal.PtrToStructure(myBuf, typeof(USER_MODALS_INFO_3)); myResults += String.Format("usrmod3_lockout_duration={0}\nusrmod3_lockout_observation_window={1}\nusrmod3_lockout_threshold={2}\n", myInfo3.usrmod3_lockout_duration.ToString("X8"), myInfo3.usrmod3_lockout_observation_window.ToString("X8"), myInfo3.usrmod3_lockout_threshold.ToString("X8") ); } myResults += String.Format("retVal={0}\n\n", retVal); retVal = NetApiBufferFree(myBuf); </code></pre> http://stackoverflow.com/questions/1794610/getting-started-with-unmanaged-windows-application 0 Getting started with unmanaged Windows application? unknown (google) 2009-11-25T04:24:03Z 2009-11-25T09:10:53Z <p>The app I am thinking about is something like an email reader (UI intensive). Is MFC the best/only way to go? Are there any other development environments for this other than Visual Studio? Are there any recommended/must read for this?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1790567/how-to-call-netusermodalsget-from-c-net 0 How to call NetUserModalsGet() from C#.NET? JCCyC 2009-11-24T14:50:57Z 2009-11-24T16:53:58Z <p><strong>EDIT:</strong> followup at <a href="http://stackoverflow.com/questions/1791377/netusermodalsget-returns-strings-incorrectly-for-c-net">http://stackoverflow.com/questions/1791377/netusermodalsget-returns-strings-incorrectly-for-c-net</a></p> <p>I'm struggling with the DLL declarations for this function:</p> <pre><code>NET_API_STATUS NetUserModalsGet( __in LPCWSTR servername, __in DWORD level, __out LPBYTE *bufptr ); </code></pre> <p>(Reference: <a href="http://msdn.microsoft.com/en-us/library/aa370656%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa370656%28VS.85%29.aspx</a>)</p> <p>I tried this:</p> <pre><code>private string BArrayToString(byte[] myArray) { string retVal = ""; if (myArray == null) retVal = "Null"; else { foreach (byte myByte in myArray) { retVal += myByte.ToString("X2"); } } return retVal; } ... [DllImport("netapi32.dll")] public static extern int NetUserModalsGet( string servername, int level, out byte[] bufptr ); [DllImport("netapi32.dll")] public static extern int NetApiBufferFree( byte[] bufptr ); ... int retVal; byte[] myBuf; retVal = NetUserModalsGet("\\\\" + tbHost.Text, 0, out myBuf); myResults.Text += String.Format("retVal={0}\nBuffer={1}\n", retVal, BArrayToString(myBuf)); retVal = NetApiBufferFree(myBuf); </code></pre> <p>I get a return value of 1231 (Network Location cannot be reached) no matter if I use an IP address or a NetBIOS name of a machine that's undoubtedly online, or even my own. On edit: this happens even if I don't put a "\\" in front of the hostname.</p> <p>I'm doing things wrong, I know, and let's not even get started on how to declare that blasted return buffer (which can have a number of different lengths, ewww).</p> http://stackoverflow.com/questions/1781601/having-problem-dynamicaly-invoking-unmanaged-vb-com-dll-from-c 0 Having problem dynamicaly invoking unmanaged VB COM dll from c#? Ramesh Vel 2009-11-23T07:30:07Z 2009-11-23T08:05:58Z <p>Hi, I have a problem calling unmanaged VB COM dll from c#. This is dynamic invocation using loadLibrary and GetProcAddress.</p> <p>I can successfully loaded the dll using loadLibrary , but the GetProcAddress always return 0. It wasnt log any error msg and nothing. it just returns 0.</p> <p>below the sample code</p> <h2>VB COM </h2> <pre><code> VERSION 1.0 CLASS BEGIN MultiUse = -1 Persistable = 0 DataBindingBehavior = 0 DataSourceBehavior = 0 MTSTransactionMode = 0 END Attribute VB_Name = "Sample" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = True Attribute VB_PredeclaredId = False Attribute VB_Exposed = True Option Explicit Private Attribute1 As String Private Sub Class_Initialize() Attribute1 = "test" End Sub Public Sub TestSub() End Sub Public Function testFunction() As String testFunction = "default.html" End Function Public Function SetData(XML As String) As String SetData = Date + Time End Function </code></pre> <h2>c# code</h2> <pre><code> static class UnManagedInvoker { [DllImport("kernel32.dll")] private static extern IntPtr LoadLibrary([MarshalAs(UnmanagedType.LPStr)] string dllToLoad); [DllImport("kernel32.dll")] private static extern IntPtr GetProcAddress(IntPtr hModule, [MarshalAs(UnmanagedType.LPStr)] string procedureName); [DllImport("kernel32.dll")] private static extern bool FreeLibrary(IntPtr hModule); [UnmanagedFunctionPointer(CallingConvention.Cdecl)] public delegate string MethodToInvoke(string sdata); public static string InvokeUnmanagedDll(string dllPath, string methodName) { IntPtr DIedDll = LoadLibrary(dllPath); IntPtr AddressOfFunction = GetProcAddress(DIedDll, methodName); MethodToInvoke MI = (MethodToInvoke)Marshal.GetDelegateForFunctionPointer(AddressOfFunction, typeof(MethodToInvoke)); string data = MI("ssdasda"); FreeLibrary(DIedDll); return data; } } </code></pre> <p>And the calling code</p> <pre><code> string res = UnManagedInvoker.InvokeUnmanagedDll("xx.dll","SetData"); </code></pre> <p>Can someone help me out..</p> <h2>Update:</h2> <p>I can successfully call the methods if the component is registered. using the below code</p> <pre><code> Type Med = Type.GetTypeFromCLSID(new Guid("089DD8B0-E12B-439B-B52C-007CA72C93D0")); object MedObj = Activator.CreateInstance(Med); object[] parameter = new object[1]; parameter[0] = "asdasd"; var ss = Med.InvokeMember("SetData", System.Reflection.BindingFlags.InvokeMethod, null, MedObj, parameter); </code></pre> <p>is there a way if the dll not registered.??</p> <p>Cheers</p> <p>RameshVel</p> http://stackoverflow.com/questions/1729705/accessviolation-when-calling-unmanaged-dll 0 AccessViolation when calling unmanaged dll Paralife 2009-11-13T14:54:36Z 2009-11-20T09:12:35Z <p>When calling an unmanaged Dll from a c# application I get an <code>AccessViolationException</code>. The strange thing is that the exported function has no arguments, so the problem is not in the Marshalling of data. The function gets no argument and just returns an integer. Also note that calling convention is not an issue. An identical function with the same zero arguments and integer return value (but different name) works just fine. What are the remaining candidate reasons that such a call could cause this exception considering the fact that marshalling and calling convention is ruled out? </p> <p>UPDATE: The dll function is correct because if called from other unmanaged code through plain linking, then it works perfectly. </p> <p>UPDATE 2: Everything is compiled and run on 32 bit. I tried Win XP SP2 and Vista. Here is an interesting fact: On Vista Systems it works like a charm. On XP it fails.</p> <p>UPDATE 3: I didnt get the source code but I learned what essentially this dll does, so i tried to reproduce the problem with my own dll. Here is the story: The original dll is some kind of a wrapper to ei.lib (Erlang's c interface library). It exports some helper funcs. So to reproduce the problem I have made a wrapper dll around ei.lib which exports only one function, namely "test()". I did that so I wouldnt mess with marshalling and stuff. I wanted just to test an initialization, connecting and sending a message. So this test() func of my dll just calls <code>ei_connect_init()</code>, then <code>ei_connect()</code> and finaly <code>ei_reg_send()</code>, with arguments hardcoded inside. The problem is that if I call this dll and use the test() function from another unmanaged code, it works ok. Message is sent. But when I call it from c# through DllImport then it works only on Vista. Not on XP. On XP it fails with a AccessViolationException on the .net layer. I ve tried to trace down the problem and I see that from inside my dll, any call to <code>ei_connect()</code>, or any attempt to read <code>erl_errno</code> (these are defined in ei.lib) when running on XP and being called by managed code result in trying to read or write protected memory so the app crashes. It cant be something trivial since it works on Vista and it works when called by unmanaged code. </p> http://stackoverflow.com/questions/1768454/using-system-namespace-in-the-unmanaged-code 0 Using SYSTEM namespace in the unmanaged code sourabh 2009-11-20T05:07:39Z 2009-11-20T05:07:39Z <p>Hi, I want to use System namespace in my unmanaged(C++) code without changing the Clr(common language run time support) settings, to check files security permissions. Is it possible that we can do like this If so, how do I do that? if not, is there any alternative to use this. </p> http://stackoverflow.com/questions/1755816/c-delegate-with-string-reference-to-c-callback 0 C# delegate with string reference to c++ callback Elad 2009-11-18T13:03:02Z 2009-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 &amp;.</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/1759612/how-to-set-the-culture-info-in-unmanaged-c 0 How to set the culture info in unmanaged C++? Vic 2009-11-18T22:28:35Z 2009-11-18T22:42:40Z <p>Hello,</p> <p>I got a program written in unmanaged C++, I need to get the cultural info from the system and set that info to the current execution thread in my c++ application.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1757448/how-do-i-properly-return-a-char-from-an-unmanaged-dll-to-c 1 How do I properly return a char * from an Unmanaged DLL to C#? IronicMuffin 2009-11-18T16:56:38Z 2009-11-18T18:30:34Z <p>Function signature:</p> <pre> char * errMessage(int err); </pre> <p>My code: </p> <pre> [DllImport("api.dll")] internal static extern char[] errMessage(int err); ... char[] message = errMessage(err); </pre> <p>This returns an error: </p> <pre> Cannot marshal 'return value': Invalid managed/unmanaged type combination. </pre> <p>What am I doing wrong? Thanks for any help.</p> http://stackoverflow.com/questions/1751330/itaskbarlist3-undeclared 0 ITaskbarList3 undeclared? Zenox 2009-11-17T19:54:50Z 2009-11-18T07:14:33Z <p>I'm trying to write some c++ code to use the ITaskbarList3, but I'm getting that error. I have confirmed that I am including shobjidl.h (but I checked and this file only defines up to ITaskbarList2). I have Visual Studios 2008 (SP1) and I have Microsoft Windows SDK for Windows Server 2008 installed.</p> <p>Does anyone know what I am missing?</p> http://stackoverflow.com/questions/1743832/c-access-to-command-line-arguments-outside-main 1 C++ Access to command line arguments outside main? Zenox 2009-11-16T18:02:50Z 2009-11-16T18:13:03Z <p>I have a couple command line apps that both end up calling into com objects. Rather than adding new interface to these com objects, can they access the parameters passed from the command line?</p> <p>Edit: Sort of how I can call GetModuleFileName to get the file name. Im wondering if there is an equivalent method to get the args.</p> http://stackoverflow.com/questions/1743414/switching-to-wpf-is-it-time 4 Switching to WPF. Is it time? Ra 2009-11-16T16:53:09Z 2009-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/1224149/how-to-run-unmanaged-executable-from-memory-rather-than-disc 0 How to run unmanaged executable from memory rather than disc Triynko 2009-08-03T19:23:39Z 2009-11-15T21:18:47Z <p>I want to embed a command-line utility in my C# application, so that I can grab its bytes as an array and run the executable without ever saving it to disk as a separate file (avoids storing executable as separate file and avoids needing ability to write temporary files anywhere).</p> <p>I cannot find a method to run an executable from just its byte stream. Does windows require it to be on a disk, or is there a way to run it from memory? If windows requires it to be on disk, is there an easy way in the .NET framework to create a virtual drive/file of some kind and map the file to the executable's memory stream?</p> http://stackoverflow.com/questions/440069/database-access-libraries-for-c 2 Database Access Libraries for C++ Burly 2009-01-13T18:01:28Z 2009-11-15T12:52:11Z <h2>Background:</h2> <p>I have an application written in native C++ which uses the wxWidgets toolkit's wxODBC database access library which is being <a href="http://wiki.wxwidgets.org/ODBC" rel="nofollow">removed</a> from all future versions of wxWidgets . I need to replace this with another database access method that supports the assumptions and contraints outlined below. I don't require that the replacement use native DBMS APIs or ODBC under the hood, but it must meet the contraints outlined below.</p> <h2>Assumptions/Constraints</h2> <p><em>The library must:</em></p> <ul> <li>Support Native (i.e. unmanaged) C++</li> <li>32-bit Windows 2000/XP/2003 </li> <li>Visual Studio 2005</li> <li>Microsoft SQL Server 2000 and 2005 </li> <li>Oracle 9 and 10</li> <li>Run-time Performance greater than or equal to wxODBC</li> <li>Single programmer API supporting multiple DBMS (e.g. don't want to write different code for using different DBMS)</li> </ul> <p><em>Nice but Optional:</em></p> <ul> <li>64-bit Windows operating systems</li> <li>32-bit and/or 64-bit Linux operating systems</li> <li>Microsoft SQL Server 2008</li> <li>Oracle 11</li> <li>MySQL</li> <li>Any additional DBMS</li> <li>Visual Studio 2008</li> <li>Open Source</li> <li>Runtime Performance near or equal to native DBMS API</li> </ul> <h2>Question:</h2> <p><strong>What good libraries are available - either free, open source or pay - that support multiple DBMS from a single API including Oracle and Microsoft SQL Server and can be used from native C++?</strong></p> <p>Please describe any past experiences you have had - good OR bad - with a given library and why you are making your recommendation for or against a given library, especially in regards to the assumptions and contraints above.</p> <h2>See Also:</h2> <p><a href="http://stackoverflow.com/questions/74141/good-orm-for-c-solutions">http://stackoverflow.com/questions/74141/good-orm-for-c-solutions</a></p> http://stackoverflow.com/questions/252014/how-would-you-describe-the-difference-between-managed-byte-code-and-unmanaged-nat 4 How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer? Chris Pietschmann 2008-10-30T22:39:03Z 2009-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/1706270/sending-byte-inbetween-c-unmanaged-dll-and-c-managed-dll 1 Sending Byte[][] inbetween C++ unmanaged dll and C# managed dll. rkatiyar 2009-11-10T07:53:29Z 2009-11-10T18:15:04Z <p>I have an unmanaged C++ dll that exports the following methods:</p> <pre><code>ERASURE_API void encode(unsigned char ** inp, unsigned char ** outp, unsigned int *block_nums, size_t num_block_nums, size_t sz); ERASURE_API void decode(unsigned char ** inp, unsigned char ** outp, unsigned int * index, size_t sz); </code></pre> <p>Size of inp and outp can be as large as 10KB, What would be the best performance way to call these methods from C# managed code?</p> <p>EDIT: I did the following implementation, and It works, but is it the most efficient way to do this.</p> <p>C++ :</p> <pre><code>ERASURE_API void encode_w(unsigned char * inpbuf,int k, unsigned char * outpbuf, int nfecs, unsigned int * block_nums, size_t num_block_nums, size_t sz) { unsigned char ** inp= new unsigned char*[k]; for(i=0;i&lt;k;i++){ inp[i] = inpbuf+i*sz; } unsigned char ** outp= new unsigned char *[nfecs]; for(i=0;i&lt;nfecs;i++){ outp[i] =outpbuf+i*sz; } encode(inp,outp,block_nums,num_block_nums,sz); delete [] inp; delete [] outp; } </code></pre> <p>C#: </p> <pre><code>[DllImport("erasure.dll")] public static extern void encode_w([In] byte[] inpbuf,int k,[Out] byte[] outpbuf, int nfecs, uint[] block_nums, int num_block_nums, int sz); </code></pre> http://stackoverflow.com/questions/1635679/how-to-use-managed-code-from-unmanaged-code 1 How to use managed code from unmanaged code? Manzoor Ahmed 2009-10-28T07:37:39Z 2009-11-09T19:13:54Z <p>How do I call a .NET code from native C++ (unmanaged code)? I want to expose .NET code to my unmanaged (C++) application and then use them. More specifically, I want to call C# from native C++ :). I know there are many ways but can you tell me the pros and cons of each? By the way, I don't want to use COM so what are the options now? </p> <p>Is it possible that I wrap the C# code in C++/CLI and then call it from C++? If so, how do I do that? How do I wrap the C# in C++/CLI and then call it from C++?</p> http://stackoverflow.com/questions/1687558/calling-unmanaged-function-from-c-should-i-pass-stringbuilder-or-use-unsafe-cod 2 Calling unmanaged function from C#: should I pass StringBuilder or use unsafe code? jmgant 2009-11-06T13:20:54Z 2009-11-07T16:15:16Z <p>I've got a C# program that needs to pass a char buffer to an unmanaged function. I've found two ways that seem to work reliably, but I'm not sure which I should choose.</p> <p>Here's the unmanaged function's signature.</p> <pre><code>extern "C" __declspec(dllexport) int getNextResponse(char *buffer); </code></pre> <p>The first option is to define the buffer as a StringBuilder, as follows.</p> <pre><code>//at class level... [DllImport("mydll.dll")] static extern int getNextResponse(StringBuilder buffer); //in main method body... StringBuilder sb = new StringBuilder(" ", 65536); int rc = getNextResponse(sb); </code></pre> <p>This is simple, and it works, and I think I basically understand why it works because the StringBuilder has a buffer behind the scenes, so (I assume) the interop layer is just marshalling the StringBuilder to a char *.</p> <p>The other option is using unsafe code.</p> <pre><code>//at class level... [DllImport("mydll.dll")] static extern int getNextResponse(byte* buffer); //separate method... private static unsafe int runGetNextResponse(byte[] buffer) { fixed (byte* p = buffer) { int rc = getNextResponse(p); return rc; } } //in main method body... byte[] b = new byte[65536]; int rc = runGetNextResponse(b); </code></pre> <p>The second approach is more code, but it's also more explicit about what's going on. </p> <p>Are these two approaches doing basically the same thing? Is there any reason to choose one over the other?</p> http://stackoverflow.com/questions/1682228/is-winforms-accessible-from-unmanaged-c 2 Is Winforms accessible from unmanaged C++? John 2009-11-05T17:31:09Z 2009-11-05T20:17:23Z <p>Some classic Windows/C++ applications can't <strong>easily</strong> be moved to managed C++.net, due to use of external libraries. Is it feasible to use newer GUI libraries like winforms (or even WPF) with such applications, 'dropping in' new controls to replace stale-looking MFC?</p> <p>Or is it not really worth it, and would take a lot of time?</p>