diff options
author | sr55 <[email protected]> | 2009-01-03 20:34:11 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-01-03 20:34:11 +0000 |
commit | 6a22d98935aced40eef5279465f6cba645d04731 (patch) | |
tree | fb6286f29682c32921becc93811a12fc137c4862 /win/C#/Functions/Encode.cs | |
parent | ff2720b7225779ef2ce592c0c9fc674c7d6eb76e (diff) |
WinGui:
- Just a small tidyup of title.cs and encode.cs
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2055 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/Encode.cs')
-rw-r--r-- | win/C#/Functions/Encode.cs | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/win/C#/Functions/Encode.cs b/win/C#/Functions/Encode.cs index 471acb586..7c3f436fa 100644 --- a/win/C#/Functions/Encode.cs +++ b/win/C#/Functions/Encode.cs @@ -17,14 +17,18 @@ namespace Handbrake.Functions {
public class Encode
{
- /// <summary>
- /// CLI output is based on en-US locale,
- /// we use this CultureInfo as IFormatProvider to *.Parse() calls
- /// </summary>
- static readonly public CultureInfo Culture = new CultureInfo("en-US", false);
+ // DLL Imports
+ [DllImport("user32.dll")]
+ public static extern void LockWorkStation();
+ [DllImport("user32.dll")]
+ public static extern int ExitWindowsEx(int uFlags, int dwReason);
+ // Declarations
Process hbProc = new Process();
+ // CLI output is based on en-US locale,
+ static readonly private CultureInfo Culture = new CultureInfo("en-US", false);
+
/// <summary>
/// Execute a HandBrakeCLI process.
/// </summary>
@@ -73,12 +77,10 @@ namespace Handbrake.Functions }
return hbProc;
}
-
- [DllImport("user32.dll")]
- public static extern void LockWorkStation();
- [DllImport("user32.dll")]
- public static extern int ExitWindowsEx(int uFlags, int dwReason);
-
+
+ /// <summary>
+ /// Perform an action after an encode. e.g a shutdown, standby, restart etc.
+ /// </summary>
public void afterEncodeAction()
{
// Do something whent he encode ends.
@@ -165,5 +167,6 @@ namespace Handbrake.Functions }
}
}
+
}
}
|