473,386 Members | 1,712 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

C struct to C# mapping

Hi,

I'm trying to call a win32 function using pinvoke and C# .Net.

The function takes a struct reference as a parameter (lpInfo), but on return
the struct is not filled with data, and I'm suspecting that I have made a
mistake mapping up the struct.

DBSTAT DBenum ( XInt32 hDBase,

LPSTR lpszPath,

XDWORD nLevel,

DBENUMCB Callback,

DWORD UserData,

LPVOID lpInfo);

The C struct is like this (truncated):

typedef struct _seginfo {

CHAR Name [ strSHORT + 1 ];

CHAR Desc [ strLONG + 1 ];

DWORD Created;

WORD DClass;

WORD UType;

Int32 Top;

Int32 Bottom;

WORD wPoints;

FLOAT fHStart;

WORD uHUnit;

FLOAT fVScale;

WORD SmpSize; // for smpFILE = file size

// for smpREGULAR

WORD TixPerSmp;

// for smpRANGE

XDWORD *lpUpdateCount;

// any

Int32 lAliasOffset;

} SGMINFO;

strSHORT = 10;

strLONG = 256;

Can anyone help me with a correct C# mapping?


Feb 6 '06 #1
11 8217
Tor,
Can anyone help me with a correct C# mapping?


I'm guessing it should look something like this

struct SGMINFO
{
[MmshalAs(UnmanagedType.ByValTStr, SizeConst=11)]
public string Name;
[MmshalAs(UnmanagedType.ByValTStr, SizeConst=257
public string Desc;
public uint Created;
public ushort DClass;
public ushort UType;
public int Top;
public int Bottom;
public ushort wPoints;
public float fHStart;
public ushort uHUnit;
public float fVScale;
public ushort SmpSize;
public ushort TixPerSmp;
public IntPtr lpUpdateCount;
public int lAliasOffset;
}
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Feb 6 '06 #2
Hi Mattias,
Thanks for your answer!

The struct is still not filled with data.
I see that a sizeof( SGMINFO) i C is 255 bytes, and Marshal.SizeOf(
typeof( SGMINFO )) in .Net is 344 bytes.
Maybe this is due to the fact that a char in ansi C is 1 byte wheras a char
in C# is 2 bytes?
Or do you think this is not the case?

Regards Tor

"Mattias Sjögren" <ma********************@mvps.org> wrote in message
news:uE**************@TK2MSFTNGP09.phx.gbl...
Tor,
Can anyone help me with a correct C# mapping?


I'm guessing it should look something like this

struct SGMINFO
{
[MmshalAs(UnmanagedType.ByValTStr, SizeConst=11)]
public string Name;
[MmshalAs(UnmanagedType.ByValTStr, SizeConst=257
public string Desc;
public uint Created;
public ushort DClass;
public ushort UType;
public int Top;
public int Bottom;
public ushort wPoints;
public float fHStart;
public ushort uHUnit;
public float fVScale;
public ushort SmpSize;
public ushort TixPerSmp;
public IntPtr lpUpdateCount;
public int lAliasOffset;
}
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Feb 6 '06 #3
"Mattias Sjögren" <ma********************@mvps.org> wrote in message
news:uE**************@TK2MSFTNGP09.phx.gbl...
Tor,
Can anyone help me with a correct C# mapping?


I'm guessing it should look something like this

struct SGMINFO
{
[MmshalAs(UnmanagedType.ByValTStr, SizeConst=11)]
public string Name;
[MmshalAs(UnmanagedType.ByValTStr, SizeConst=257
public string Desc;
public uint Created;
public ushort DClass;
public ushort UType;
public int Top;
public int Bottom;
public ushort wPoints;
public float fHStart;
public ushort uHUnit;
public float fVScale;
public ushort SmpSize;
public ushort TixPerSmp;
public IntPtr lpUpdateCount;
public int lAliasOffset;
}


I think it needs a StructLayoutAttribute:
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi)]
Feb 6 '06 #4
>I think it needs a StructLayoutAttribute:
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi)]


That's the default for C# structs so it's optional. You don't have to
add it but it doesn't change anything if you do.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Feb 6 '06 #5
>The struct is still not filled with data.

How are you using it?

I see that a sizeof( SGMINFO) i C is 255 bytes,
I find that hard to believe since the Desc field alone is 257 bytes.

and Marshal.SizeOf(typeof( SGMINFO )) in .Net is 344 bytes.
I get 312 or 308 depending on the packing.

Maybe this is due to the fact that a char in ansi C is 1 byte wheras a char
in C# is 2 bytes?


The size of a char to the marshaler is whatever you set with the
StructLayout attribute. If you keep the default (CharSet.Ansi) it's
one byte per character.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Feb 6 '06 #6

"Mattias Sjögren" <ma********************@mvps.org> wrote in message
news:Oj**************@tk2msftngp13.phx.gbl...
The struct is still not filled with data.
How are you using it?

public delegate bool EnumCallbackCB( string EnumName, uint UserData );
[ DllImport( "WDBase.dll", CharSet=CharSet.Auto, EntryPoint="DBenumA",
SetLastError=true, ExactSpelling=true )]
public static extern WarriorCommon.DBStat DBEnum( UInt32 DBHandler, string
Path, Int32 Level, EnumCallbackCB Callback, Int32 SizeOfUserData, ref
SGMINFO sgm );

I see that a sizeof( SGMINFO) i C is 255 bytes,
I find that hard to believe since the Desc field alone is 257 bytes.

Dont understand it, I checked again and sizeof(SGMINFO) is only 244 in C,
and Marshal.SizeOf(typeof( SGMINFO )) in .Net is 344 bytes.
I get 312 or 308 depending on the packing.

Sorry I did't mention that the struct was truncated. The complete listing
goes like this

[ StructLayout( LayoutKind.Sequential )]
public struct SGMINFO{
[[MarshalAs(UnmanagedType.ByValTStr, SizeConst=11)]
public string Name;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst=257)]
public string Desc;
public uint Created;//DWORD
public uint Modified;//DWORD
public uint Code;//DWORD
public ushort bIsAliased;//WORD
public ushort SType;//WORD
public ushort DType;//WORD
public ushort DClass;//WORD
public ushort UType;//WORD
public int Top;//Int32
public int Bottom;//Int32
public ushort wPoints;//WORD
public float fHStart;//FLOAT
public float fHStep;//FLOAT
public ushort uHUnit;//WORD
public float fVScale;//FLOAT
public float fVMin;//FLOAT
public float fVMax;//FLOAT/
public ushort SmpSize;
public ushort TixPerSmp;//WORD
public ushort SmpPerBlk;//WORD
public ushort IxPerBlk;//WORD
public IntPtr lpUpdateCount;//XDWORD
public int lAliasOffset;//Int32}
Maybe this is due to the fact that a char in ansi C is 1 byte wheras a
char
in C# is 2 bytes?


The size of a char to the marshaler is whatever you set with the
StructLayout attribute. If you keep the default (CharSet.Ansi) it's
one byte per character.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Feb 6 '06 #7
Sorry for the changed user name, but I'm at home.
"Mattias Sjögren" <ma********************@mvps.org> wrote in message
news:Oj**************@tk2msftngp13.phx.gbl...
The struct is still not filled with data.


How are you using it?

I see that a sizeof( SGMINFO) i C is 255 bytes,


I find that hard to believe since the Desc field alone is 257 bytes.

and Marshal.SizeOf(typeof( SGMINFO )) in .Net is 344 bytes.


I get 312 or 308 depending on the packing.

Maybe this is due to the fact that a char in ansi C is 1 byte wheras a
char
in C# is 2 bytes?


The size of a char to the marshaler is whatever you set with the
StructLayout attribute. If you keep the default (CharSet.Ansi) it's
one byte per character.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Feb 6 '06 #8
>[ DllImport( "WDBase.dll", CharSet=CharSet.Auto, EntryPoint="DBenumA",
SetLastError=true, ExactSpelling=true )]
public static extern WarriorCommon.DBStat DBEnum( UInt32 DBHandler, string
Path, Int32 Level, EnumCallbackCB Callback, Int32 SizeOfUserData, ref
SGMINFO sgm );


You may have to add the attributes [In, Out] to the last parameter to
get changes to marshal back.

I find that hard to believe since the Desc field alone is 257 bytes.

Dont understand it, I checked again and sizeof(SGMINFO) is only 244 in C,


Then your value for strLONG must be wrong.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Feb 6 '06 #9

"Mattias Sjögren" <ma********************@mvps.org> wrote in message
news:O1*************@TK2MSFTNGP12.phx.gbl...
You may have to add the attributes [In, Out] to the last parameter to
get changes to marshal back.


Would that be a MarshalAsAttribute declaration?

Regards
Tor
Feb 7 '06 #10
>> You may have to add the attributes [In, Out] to the last parameter to
get changes to marshal back.


Would that be a MarshalAsAttribute declaration?


No, the InAttribute and OutAttribute classes.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Feb 7 '06 #11
Mattias,
Tanks for very good help!

"Mattias Sjögren" <ma********************@mvps.org> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
You may have to add the attributes [In, Out] to the last parameter to
get changes to marshal back.


Would that be a MarshalAsAttribute declaration?


No, the InAttribute and OutAttribute classes.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.

Feb 11 '06 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
by: Steven Bethard | last post by:
In the "empty classes as c structs?" thread, we've been talking in some detail about my proposed "generic objects" PEP. Based on a number of suggestions, I'm thinking more and more that instead of...
7
by: pmatos | last post by:
Hi all, I have a struct with a: static map<int, int> rules; Now, I want it to always be initialized with the pairs (-1, 1), (-2, 2) and (-3, 3). I don't need to dynamically add or delete...
56
by: ccwork | last post by:
Hi all, Here is a sample code segment: .... typedef PACKED struct { union { PACKED struct { char red:1;
1
by: geri.gan | last post by:
I have C API just like this: enum void getinfor(const struct inputinfor *a, const struct outputinfor ** b) i use p/invok to translate it to internal static extern void getinfor(ref...
10
by: Giovanni Bajo | last post by:
Hello, given the ongoing work on struct (which I thought was a dead module), I was wondering if it would be possible to add an API to register custom parsing codes for struct. Whenever I use it...
9
by: Lloyd Dupont | last post by:
I have an object which is just a thin wrapper over an other object and might be created in big quantities. something like that: // ===== pseudo-code cample ======= class TheObject { int data;...
1
by: Vikas | last post by:
Hi I have been browsing C struct to C# mapping emails on the newsgroups, but I haven't been able to find a solution to my problem. My C structure looks like this: struct myCstruct { char *...
14
by: barcaroller | last post by:
I have a multi-field struct and a memory block (created using malloc) that contains structured data. If I map the struct to the memory block, am I guaranteed that the struct fields will be filled...
4
by: Steven Woody | last post by:
In our project, one used the following struct #pragma pack(1) struct Foo { uint8_t b1; uint8_t b2; uint8_t b3; std::vector<uint8_t buf; ... };
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.