diff options
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/dutil.h')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/dutil.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/dutil.h b/src/libs/dutil/WixToolset.DUtil/inc/dutil.h index fc9ec0f4..52da066c 100644 --- a/src/libs/dutil/WixToolset.DUtil/inc/dutil.h +++ b/src/libs/dutil/WixToolset.DUtil/inc/dutil.h | |||
@@ -41,6 +41,23 @@ HRESULT DAPI DutilInitialize( | |||
41 | *******************************************************************/ | 41 | *******************************************************************/ |
42 | void DAPI DutilUninitialize(); | 42 | void DAPI DutilUninitialize(); |
43 | 43 | ||
44 | |||
45 | /******************************************************************** | ||
46 | DutilSuppressTraceErrorSource - tells dutil to skip calling | ||
47 | pfnTraceErrorCallback for the current thread. This is reference | ||
48 | counted, so dutil won't start calling it again until there is an | ||
49 | equal number of calls to DutilUnsuppressTraceErrorSource. | ||
50 | Returns whether the count was incremented. | ||
51 | |||
52 | *******************************************************************/ | ||
53 | BOOL DAPI DutilSuppressTraceErrorSource(); | ||
54 | |||
55 | /******************************************************************** | ||
56 | DutilUnsuppressTraceErrorSource - opposite of DutilSuppressTraceErrorSource. | ||
57 | |||
58 | *******************************************************************/ | ||
59 | BOOL DAPI DutilUnsuppressTraceErrorSource(); | ||
60 | |||
44 | void DAPI Dutil_SetAssertModule(__in HMODULE hAssertModule); | 61 | void DAPI Dutil_SetAssertModule(__in HMODULE hAssertModule); |
45 | void DAPI Dutil_SetAssertDisplayFunction(__in DUTIL_ASSERTDISPLAYFUNCTION pfn); | 62 | void DAPI Dutil_SetAssertDisplayFunction(__in DUTIL_ASSERTDISPLAYFUNCTION pfn); |
46 | void DAPI Dutil_Assert(__in_z LPCSTR szFile, __in int iLine); | 63 | void DAPI Dutil_Assert(__in_z LPCSTR szFile, __in int iLine); |