diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-09-02 16:08:29 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-09-03 15:29:26 -0500 |
commit | e263e6bca03d783ece2f2dc86345dcdfc4b9776d (patch) | |
tree | 3f79b618040f4fa859bf273f89e712015bfe7441 /src/libs/dutil/WixToolset.DUtil/inc/logutil.h | |
parent | 85735f8b50a9dae190b08abe339aeda7a447a30b (diff) | |
download | wix-e263e6bca03d783ece2f2dc86345dcdfc4b9776d.tar.gz wix-e263e6bca03d783ece2f2dc86345dcdfc4b9776d.tar.bz2 wix-e263e6bca03d783ece2f2dc86345dcdfc4b9776d.zip |
Delay closing the bundle log so that restart failures will be logged.
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/logutil.h')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/logutil.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/logutil.h b/src/libs/dutil/WixToolset.DUtil/inc/logutil.h index 0ad8510a..fba1e81e 100644 --- a/src/libs/dutil/WixToolset.DUtil/inc/logutil.h +++ b/src/libs/dutil/WixToolset.DUtil/inc/logutil.h | |||
@@ -81,6 +81,12 @@ HRESULT DAPI LogRename( | |||
81 | __in_z LPCWSTR wzNewPath | 81 | __in_z LPCWSTR wzNewPath |
82 | ); | 82 | ); |
83 | 83 | ||
84 | /******************************************************************** | ||
85 | LogFlush - calls ::FlushFileBuffers with the log file handle. | ||
86 | |||
87 | ********************************************************************/ | ||
88 | HRESULT DAPI LogFlush(); | ||
89 | |||
84 | void DAPI LogClose( | 90 | void DAPI LogClose( |
85 | __in BOOL fFooter | 91 | __in BOOL fFooter |
86 | ); | 92 | ); |
@@ -344,7 +350,7 @@ HRESULT DAPI LogFooter(); | |||
344 | LogStringWorkRaw - Write a raw, unformatted string to the log | 350 | LogStringWorkRaw - Write a raw, unformatted string to the log |
345 | 351 | ||
346 | ********************************************************************/ | 352 | ********************************************************************/ |
347 | HRESULT LogStringWorkRaw( | 353 | HRESULT DAPI LogStringWorkRaw( |
348 | __in_z LPCSTR szLogData | 354 | __in_z LPCSTR szLogData |
349 | ); | 355 | ); |
350 | 356 | ||