diff options
author | sr55 <[email protected]> | 2012-09-29 21:40:46 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-09-29 21:40:46 +0000 |
commit | 4d6d7ec179aa8c4459515539599c700bdcc54420 (patch) | |
tree | 93a2f9a730bc4f78416545620c801e5d9369880a /win/CS/HandBrakeWPF/ViewModels/Interfaces | |
parent | f933f7f15f06a64cd8dba8fa3da9c4db37547140 (diff) |
WinGui: Readded missing functionality that scans files dropped on the app icon when starting the app.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4995 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs index d719ce866..67dcf4c09 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs @@ -62,6 +62,17 @@ namespace HandBrakeWPF.ViewModels.Interfaces void StartEncode();
/// <summary>
+ /// The start scan.
+ /// </summary>
+ /// <param name="filename">
+ /// The filename.
+ /// </param>
+ /// <param name="title">
+ /// The title.
+ /// </param>
+ void StartScan(string filename, int title);
+
+ /// <summary>
/// Edit a Queue Task
/// </summary>
/// <param name="task">
|