1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Runtime.InteropServices; |
6 |
|
7 |
namespace gr2lib.core.coretypes.native |
8 |
{ |
9 |
/// <summary> |
10 |
/// granny_grn_file_magic_value structure |
11 |
/// </summary> |
12 |
[StructLayout(LayoutKind.Sequential, Pack = 4), Size(Size = 32)] |
13 |
public struct granny_grn_file_magic_value |
14 |
{ |
15 |
/// <summary> |
16 |
/// MagicValue |
17 |
/// </summary> |
18 |
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 4)] |
19 |
public Int32[] MagicValue; |
20 |
/// <summary> |
21 |
/// HeaderSize |
22 |
/// </summary> |
23 |
public Int32 HeaderSize; |
24 |
/// <summary> |
25 |
/// HeaderFormat |
26 |
/// </summary> |
27 |
public Int32 HeaderFormat; |
28 |
/// <summary> |
29 |
/// Reserved |
30 |
/// </summary> |
31 |
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 2)] |
32 |
public Int32[] Reserved; |
33 |
} |
34 |
} |