1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using gr2lib.core.apiversion; |
6 |
using gr2lib.core.coreclasses.header; |
7 |
using gr2lib.core.coretypes.implementation; |
8 |
|
9 |
namespace gr2lib.core.interfaces |
10 |
{ |
11 |
public interface igranny_file : INativePointer, INativeFilePointer |
12 |
{ |
13 |
grnfileinfo GrannyFileInfo { get; set; } |
14 |
|
15 |
bool IsByteReversed { get; set; } |
16 |
|
17 |
granny_header Header { get; set; } |
18 |
granny_magic SourceMagicValue { get; set; } |
19 |
|
20 |
int SectionCount { get; set; } |
21 |
IntPtr Sections { get; set; } |
22 |
bool Marshalled { get; set; } |
23 |
bool IsUserMemory { get; set; } |
24 |
IntPtr ConversionBuffer { get; set; } |
25 |
} |
26 |
} |