Search:
Namespaces
Discussions
.NET v1.1
Feedback
Structure conversion calling c routine
Messages
Related Types
This message was discovered on
microsoft.public.dotnet.framework.interop
.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.
Post a new message to this list...
Paul Durrant (VIP)
#pragma pack(1)
typedef struct _init_s
{
unsigned char ucKey[16]; // Initial authentication key
unsigned char ucName[64]; // Local platform name /
Server returned
unsigned char ucOrganization[64]; // Local organization name /
Server returned
unsigned long ulPriority; // Importance level of
session (1: low 10: high) / Granted returned
unsigned long ulVersion; // Client protocol version /
Server returned
} INIT_S, * PINIT_S;
i use
<StructLayout(
LayoutKind
.Sequential, pack:=1)> Structure init_s
<MarshalAs(
UnmanagedType
.ByValTStr, SizeConst:=16)> Public ucKey As String
<MarshalAs(
UnmanagedType
.ByValTStr, SizeConst:=64)> Public ucName As String
<MarshalAs(
UnmanagedType
.ByValTStr, SizeConst:=64)> Public ucOrganization As
String
Public usPriority As Long
Public usVersion As Long
End Structure
when serialised and passed to the c fuction it fails
Reply to this message...
Paul Durrant (VIP)
The code is correct it was a server issue
"Paul Durrant" wrote:
[Original message clipped]
Reply to this message...
System.Runtime.InteropServices.LayoutKind
System.Runtime.InteropServices.UnmanagedType
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us
-
Terms of Use
-
Privacy Policy
-
www.dotnet247.com