diff options
Diffstat (limited to 'LibTSforge/PhysicalStore/Common.cs')
| -rw-r--r-- | LibTSforge/PhysicalStore/Common.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/LibTSforge/PhysicalStore/Common.cs b/LibTSforge/PhysicalStore/Common.cs new file mode 100644 index 0000000..f73f022 --- /dev/null +++ b/LibTSforge/PhysicalStore/Common.cs @@ -0,0 +1,21 @@ +namespace LibTSforge.PhysicalStore +{ + using System.Runtime.InteropServices; + + public enum BlockType : uint + { + NONE, + NAMED, + ATTRIBUTE, + TIMER + } + + [StructLayout(LayoutKind.Sequential, Pack = 1)] + public struct Timer + { + public ulong Unknown; + public ulong Time1; + public ulong Time2; + public ulong Expiry; + } +} |
