diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2022-06-29 10:28:53 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2022-06-29 15:08:37 -0500 |
| commit | 7cca75c8e95f129a21c33f1f4568e90e9e397f9d (patch) | |
| tree | cb9890caa1ac8bc891d444b6376a5e9f997ca1e3 /src/libs/dutil/WixToolset.DUtil/inc/apputil.h | |
| parent | 3ff6428a068bafd74d8ec072a5fc261c33cc2019 (diff) | |
| download | wix-7cca75c8e95f129a21c33f1f4568e90e9e397f9d.tar.gz wix-7cca75c8e95f129a21c33f1f4568e90e9e397f9d.tar.bz2 wix-7cca75c8e95f129a21c33f1f4568e90e9e397f9d.zip | |
Add AppWaitForSingleObject/MultipleObjects, ThreadWaitForCompletion.
Diffstat (limited to '')
| -rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/apputil.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/apputil.h b/src/libs/dutil/WixToolset.DUtil/inc/apputil.h index 95a98e73..e2812ee4 100644 --- a/src/libs/dutil/WixToolset.DUtil/inc/apputil.h +++ b/src/libs/dutil/WixToolset.DUtil/inc/apputil.h | |||
| @@ -84,6 +84,27 @@ HRESULT DAPI AppEscapeCommandLineArgumentFormattedArgs( | |||
| 84 | __in va_list args | 84 | __in va_list args |
| 85 | ); | 85 | ); |
| 86 | 86 | ||
| 87 | /******************************************************************** | ||
| 88 | AppWaitForSingleObject - wrapper for ::WaitForSingleObject. | ||
| 89 | |||
| 90 | ********************************************************************/ | ||
| 91 | HRESULT DAPI AppWaitForSingleObject( | ||
| 92 | __in HANDLE hHandle, | ||
| 93 | __in DWORD dwMilliseconds | ||
| 94 | ); | ||
| 95 | |||
| 96 | /******************************************************************** | ||
| 97 | AppWaitForMultipleObjects - wrapper for ::WaitForMultipleObjects. | ||
| 98 | |||
| 99 | ********************************************************************/ | ||
| 100 | HRESULT DAPI AppWaitForMultipleObjects( | ||
| 101 | __in DWORD dwCount, | ||
| 102 | __in const HANDLE* rghHandles, | ||
| 103 | __in BOOL fWaitAll, | ||
| 104 | __in DWORD dwMilliseconds, | ||
| 105 | __out_opt DWORD* pdwSignaledIndex | ||
| 106 | ); | ||
| 107 | |||
| 87 | #ifdef __cplusplus | 108 | #ifdef __cplusplus |
| 88 | } | 109 | } |
| 89 | #endif | 110 | #endif |
