1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using gr2lib.core.typedefs; |
6 |
|
7 |
namespace gr2lib.core.interfaces |
8 |
{ |
9 |
public interface IExporterInfo : INativePointer |
10 |
{ |
11 |
string ExporterName { get; set; } |
12 |
granny_int32 ExporterMajorRevision { get; set; } |
13 |
granny_int32 ExporterMinorRevision { get; set; } |
14 |
granny_int32 ExporterCustomization { get; set; } |
15 |
granny_int32 ExporterBuildNumber { get; set; } |
16 |
IntPtr ExtendedData { get; set; } |
17 |
} |
18 |
} |