Revision: | 94 |
Committed: | Sat Jul 17 05:09:42 2010 UTC (12 years, 6 months ago) by william |
File size: | 386 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 | |
6 | namespace gr2lib.core.interfaces |
7 | { |
8 | public interface igranny_magic : INativePointer |
9 | { |
10 | Int32[] MagicValue { get; set; } // size 4 |
11 | Int32 HeaderSize { get; set; } |
12 | Int32 HeaderFormat { get; set; } |
13 | Int32[] Reserved { get; set; } // size 2 |
14 | } |
15 | } |