Im working towards a dll file for a software's SDK and i'm trying to call a function to get information about the host of the software.

there are two unsigned char variables(HostMachineAddress, HostProgramVersion) in the struct the function wants and it seems like i "loose" the last byte when i try to call it from c#... if I change the SizeConst in the c# struct below to 5 i do get the missing byte, however it causes the other variable looses data.

Could someone help me find a way to solve this issue? also trying to use a class instead of struct causes system.stackoverflow error

C# Struct

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct sHostInfo
{
    public int bFoundHost;
    public int LatestConfirmationTime;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
    public string szHostMachineName;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
    public string HostMachineAddress;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
    public string szHostProgramName;
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 4)]
    public string HostProgramVersion;
}

C#

[DllImport("Cortex_SDK.dll")]
public static extern int GetHostInfo(out sHostInfo pHostInfo);
link|improve this question

50% accept rate
2  
Why are HostProgramVersion and szHostProgramName swapped in your C# code? – Fox32 Mar 7 '11 at 15:47
feedback

1 Answer

up vote 6 down vote accepted

Your C# struct's layout is different from the C++ one (HostProgramVersion should be last).

Also for strings marshalled as ByValTStr use [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)].

The problem with the missing last byte may be that the marshaller tries to append null to your string (as in null-terminated string). Try to use sbyte[]+ByValArray instead of a string.

link|improve this answer
1  
+1 Also, I'd always specify StructLayoutAttribute.Pack even though it's not relevant here. A good habit to get into. – David Heffernan Mar 7 '11 at 15:52
sorry my mistake regarding the swapped variables, however that didn't solve the issue i'm afraid, Also added the Charset.Ansi. – Tistatos Mar 7 '11 at 15:52
@Tistatos: Looking at your code again, it seems you are storing an IPv4 address/4-digit prog.version? That means the 4-char arrays should really sbyte arrays?! – Jaroslav Jandek Mar 7 '11 at 15:59
Yes It stores the IP adress for the computer hosting the Software. so bascially what i needed was the "ByValArray" Thank you – Tistatos Mar 7 '11 at 16:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.