From 3d7f75eea3465a34b443cf90d0affe5a637faf5d Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 26 Oct 2016 15:29:56 -0400 Subject: more steps to make provider project portable --- DvdLib/Ifo/PgcCommandTable.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 DvdLib/Ifo/PgcCommandTable.cs (limited to 'DvdLib/Ifo/PgcCommandTable.cs') diff --git a/DvdLib/Ifo/PgcCommandTable.cs b/DvdLib/Ifo/PgcCommandTable.cs new file mode 100644 index 000000000..2ead78cef --- /dev/null +++ b/DvdLib/Ifo/PgcCommandTable.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace DvdLib.Ifo +{ + public class ProgramChainCommandTable + { + public readonly ushort LastByteAddress; + public readonly List PreCommands; + public readonly List PostCommands; + public readonly List CellCommands; + } + + public class VirtualMachineCommand + { + public readonly byte[] Command; + } +} -- cgit v1.2.3