summaryrefslogtreecommitdiff
path: root/src/processrunner.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-10-29 12:08:13 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-11-06 07:44:55 -0500
commitb05cbeed900fbb3492e3cb5b624f5d9efaa288ea (patch)
tree9f05dbab21c3f81efc54a27cf22ee370170c381b /src/processrunner.h
parent4d269c2e1a625e6d50b7e6272b4f474a921c6bfa (diff)
refactored waiting into waitForProcesses()
Diffstat (limited to 'src/processrunner.h')
-rw-r--r--src/processrunner.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/processrunner.h b/src/processrunner.h
index 38e79ca8..d9423893 100644
--- a/src/processrunner.h
+++ b/src/processrunner.h
@@ -86,19 +86,4 @@ private:
bool waitForAllUSVFSProcesses(ILockedWaitingForProcess* uilock);
};
-
-enum class WaitResults
-{
- Completed = 1,
- Error,
- Cancelled
-};
-
-WaitResults waitForProcess(
- HANDLE handle, DWORD* exitCode, std::function<bool ()> progress);
-
-WaitResults waitForProcesses(
- const std::vector<HANDLE>& handles, std::vector<DWORD>& exitCodes,
- std::function<bool ()> progress);
-
#endif // PROCESSRUNNER_H