From e8c438e0573761f14af481d07615072babf94951 Mon Sep 17 00:00:00 2001 From: brianmario Date: Sun, 15 Jul 2007 21:05:49 +0000 Subject: WinGui: added initial CLI call managment class (work in progress) updated frmQueue window to work properly with cross-thread calls and updating proper UI elements updated ToString override in Parsing.Title to display leading zeros in duration git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@691 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/C#/CLI/Manager.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 win/C#/CLI/Manager.cs (limited to 'win/C#/CLI') diff --git a/win/C#/CLI/Manager.cs b/win/C#/CLI/Manager.cs new file mode 100644 index 000000000..ac20609a3 --- /dev/null +++ b/win/C#/CLI/Manager.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Diagnostics; + +namespace Handbrake.CLI +{ + /// + /// still workin on this + /// + class Manager + { + private static Queue m_processQueue = new Queue(); + + public static void Enqueue(object s) + { + //TODO: create new Process object from passed + } + } +} -- cgit v1.2.3