summaryrefslogtreecommitdiffstats
path: root/win/C#/CLI
diff options
context:
space:
mode:
authorbrianmario <[email protected]>2007-07-15 21:05:49 +0000
committerbrianmario <[email protected]>2007-07-15 21:05:49 +0000
commite8c438e0573761f14af481d07615072babf94951 (patch)
treee838061f82cd0b6335c51810e78aaacb3eef341a /win/C#/CLI
parentc1b0482386b3d1c8d4dc0b21ac140d0e09ac2ef3 (diff)
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
Diffstat (limited to 'win/C#/CLI')
-rw-r--r--win/C#/CLI/Manager.cs20
1 files changed, 20 insertions, 0 deletions
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
+{
+ /// <summary>
+ /// still workin on this
+ /// </summary>
+ class Manager
+ {
+ private static Queue<Process> m_processQueue = new Queue<Process>();
+
+ public static void Enqueue(object s)
+ {
+ //TODO: create new Process object from passed
+ }
+ }
+}