Revision: | 94 |
Committed: | Sat Jul 17 05:09:42 2010 UTC (12 years, 8 months ago) by william |
File size: | 373 byte(s) |
Log Message: | add support for getting access to the Granny2 Header |
# | Content |
---|---|
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 | [StructLayout(LayoutKind.Sequential, Pack = 4), Size(Size = 8)] |
10 | internal struct granny_grn_reference |
11 | { |
12 | public Int32 SectionIndex; |
13 | public Int32 Offset; |
14 | } |
15 | } |