diff options
author | brianmario <[email protected]> | 2007-07-15 21:05:49 +0000 |
---|---|---|
committer | brianmario <[email protected]> | 2007-07-15 21:05:49 +0000 |
commit | e8c438e0573761f14af481d07615072babf94951 (patch) | |
tree | e838061f82cd0b6335c51810e78aaacb3eef341a /win/C#/CLI | |
parent | c1b0482386b3d1c8d4dc0b21ac140d0e09ac2ef3 (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.cs | 20 |
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
+ }
+ }
+}
|