diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-08-01 10:20:31 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-08-09 10:47:30 -0600 |
commit | a37013d41f0702cbdf2aee6dce95d26dafc069b4 (patch) | |
tree | 16cc67c99f5319279a32a07c1fd1b52dccd13867 /src/bextutil/inc/bextutil.h | |
parent | 2ded319a01a9ec42b637a677813d394cd7eda6b9 (diff) | |
download | wix-a37013d41f0702cbdf2aee6dce95d26dafc069b4.tar.gz wix-a37013d41f0702cbdf2aee6dce95d26dafc069b4.tar.bz2 wix-a37013d41f0702cbdf2aee6dce95d26dafc069b4.zip |
WIXFEAT:4763 Change "string" variable type to literal and add "formatted".
Diffstat (limited to 'src/bextutil/inc/bextutil.h')
-rw-r--r-- | src/bextutil/inc/bextutil.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/bextutil/inc/bextutil.h b/src/bextutil/inc/bextutil.h index e80d3944..ac9c0062 100644 --- a/src/bextutil/inc/bextutil.h +++ b/src/bextutil/inc/bextutil.h | |||
@@ -72,6 +72,16 @@ DAPIV_(HRESULT) BextLog( | |||
72 | ); | 72 | ); |
73 | 73 | ||
74 | /******************************************************************* | 74 | /******************************************************************* |
75 | BextLogArgs - logs a message with the engine. | ||
76 | |||
77 | ********************************************************************/ | ||
78 | DAPI_(HRESULT) BextLogArgs( | ||
79 | __in BUNDLE_EXTENSION_LOG_LEVEL level, | ||
80 | __in_z __format_string LPCSTR szFormat, | ||
81 | __in va_list args | ||
82 | ); | ||
83 | |||
84 | /******************************************************************* | ||
75 | BextLogError - logs an error message with the engine. | 85 | BextLogError - logs an error message with the engine. |
76 | 86 | ||
77 | ********************************************************************/ | 87 | ********************************************************************/ |
@@ -81,6 +91,16 @@ DAPIV_(HRESULT) BextLogError( | |||
81 | ... | 91 | ... |
82 | ); | 92 | ); |
83 | 93 | ||
94 | /******************************************************************* | ||
95 | BextLogErrorArgs - logs an error message with the engine. | ||
96 | |||
97 | ********************************************************************/ | ||
98 | DAPI_(HRESULT) BextLogErrorArgs( | ||
99 | __in HRESULT hr, | ||
100 | __in_z __format_string LPCSTR szFormat, | ||
101 | __in va_list args | ||
102 | ); | ||
103 | |||
84 | #ifdef __cplusplus | 104 | #ifdef __cplusplus |
85 | } | 105 | } |
86 | #endif | 106 | #endif |