I am doing some C# interop work. I have the following struct:
#pragma pack(push,1) typedef struct { unsigned __int64 Handle; LinkType_t Type; Lin
For the arrays, try to use the fixed keyword:
fixed
public fixed byte DeviceInfo[MAX_LINK_DEVINFO]; public fixed byte Reserved[40];