Calling C++ dll function from C#: Of structs, strings and wchar_t arrays. - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T22:34:16Zhttp://stackoverflow.com/feeds/question/680066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/680066/calling-c-dll-function-from-c-of-structs-strings-and-wchart-arrays0Calling C++ dll function from C#: Of structs, strings and wchar_t arrays.Evgeny2009-03-25T02:55:16Z2009-03-26T01:07:48Z
<p>Here's a simple problem I need to solve, but it makes me feel my hair turning gray as all my attempts are returning me the same error:</p>
<p>"Attempted to read or write protected memory. This is often an indication that other memory is corrupt."</p>
<p>I have a sample app written in C++ which makes a call to the dll. Here is the relevant code:</p>
<pre><code> //function I need to call
bool convertHKID_Name(char *code,RECO_DATA *o_data); //hkid
//struct definition
struct RECO_DATA{
wchar_t FirstName[200];
wchar_t Surname[200];
};
//how it is used in C++ code
CString code;
RECO_DATA data;
GetDlgItemText(IDC_CODE,code);
char _code[200];
WideCharToMultiByte(CP_UTF8, 0, code, -1, (char *)_code, 200, NULL, NULL);
ocr->convertHKID_Name(_code,&data)
</code></pre>
<p>Now when I debug the C++ code, it does the proper thing - writes some Unicode data into the data struct.</p>
<p>Here is my attempt to do the same in C#</p>
<pre><code> //my C# wrapper class
public class cnOCRsdk
{
[StructLayout(LayoutKind.Sequential, Size=400, CharSet=CharSet.Unicode), Serializable]
public struct RECO_DATA
{
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 200)]
public string FirstName;
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 200)]
public string Surname;
};
[DllImport(@"cnOCRsdk.dll", CharSet=CharSet.Auto, EntryPoint = "?convertHKID_Name@CcnOCRsdk@@QAE_NPADPAURECO_DATA@@@Z")]
public static extern bool convertHKID_Name(ref string num, ref RECO_DATA o_data);
[DllImport("Kernel32.dll")]
public static extern int WideCharToMultiByte(uint CodePage, uint dwFlags,
[In, MarshalAs(UnmanagedType.LPWStr)]string lpWideCharStr,
int cchWideChar,
[Out, MarshalAs(UnmanagedType.LPStr)]StringBuilder lpMultiByteStr,
int cbMultiByte,
IntPtr lpDefaultChar, // Defined as IntPtr because in most cases is better to pass
IntPtr lpUsedDefaultChar // NULL
);
}
//my attempt to call the function from the dll
cnOCRsdk.RECO_DATA recoData = new cnOCRsdk.RECO_DATA();
string num = "262125355174";
StringBuilder sb = new StringBuilder(200, 200);
cnOCRsdk.WideCharToMultiByte(65001, 0, num, -1, sb, 200, IntPtr.Zero, IntPtr.Zero);
string sbTostring = sb.ToString();
//the next line generates the 'Attempted to read or write protected memory' error
bool res = cnOCRsdk.convertHKID_Name(ref sbTostring, out recoData);
</code></pre>
<p>My guess is that I'm not marshaling the RECO_DATA structure properly, because it is this struct that gets written to by the convertHKID_Name function. But how should I fix it?</p>
http://stackoverflow.com/questions/680066/calling-c-dll-function-from-c-of-structs-strings-and-wchart-arrays/680115#6801152Answer by Curt Hagenlocher for Calling C++ dll function from C#: Of structs, strings and wchar_t arrays.Curt Hagenlocher2009-03-25T03:19:49Z2009-03-25T03:19:49Z<p>I believe it should work if you</p>
<ol>
<li>Change the declaration on
<code>convertHKID_Name</code> to <code>CharSet.Ansi</code></li>
<li>Remove the "ref" from the string
parameter</li>
<li>Pass the <code>string num</code>
directly to <code>convertHKID_Name</code> instead
of calling <code>WideCharToMultiByte</code></li>
</ol>
http://stackoverflow.com/questions/680066/calling-c-dll-function-from-c-of-structs-strings-and-wchart-arrays/684138#6841380Answer by Evgeny for Calling C++ dll function from C#: Of structs, strings and wchar_t arrays.Evgeny2009-03-26T01:07:48Z2009-03-26T01:07:48Z<p>I wrote a managed wrapper in C++ for my unmanaged dll, but got stuck a bit again.</p>
<p>Continued here</p>
<p><a href="http://stackoverflow.com/questions/684133/passing-c-data-type-parameters-to-dll-written-in-c">Passing C# data type parameters to dll written in C++?</a></p>