diff options
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 |
