summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-09-21 17:47:12 +0000
committersr55 <[email protected]>2013-09-21 17:47:12 +0000
commit515f8070a43f25de58019314bf6893c12a478c76 (patch)
tree7829f0ee63671b77a900c2614e694057110fc2c8 /win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs
parentbb3aae9dd06271ab7b18a2d55fec14c97b76e9b0 (diff)
WinGui: Fix up libhb encode feature.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5790 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs b/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs
index fbb59ec2b..8d70247f7 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IEncode.cs
@@ -72,6 +72,11 @@ namespace HandBrake.ApplicationServices.Services.Interfaces
int LogIndex { get; }
/// <summary>
+ /// Gets a value indicating whether can pause.
+ /// </summary>
+ bool CanPause { get; }
+
+ /// <summary>
/// Start with a LibHb EncodeJob Object
/// </summary>
/// <param name="job">
@@ -83,6 +88,16 @@ namespace HandBrake.ApplicationServices.Services.Interfaces
void Start(QueueTask job, bool enableLogging);
/// <summary>
+ /// The pause.
+ /// </summary>
+ void Pause();
+
+ /// <summary>
+ /// The resume.
+ /// </summary>
+ void Resume();
+
+ /// <summary>
/// Kill the CLI process
/// </summary>
void Stop();