aboutsummaryrefslogtreecommitdiff
path: root/src/bextutil/inc/bextutil.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-08-01 10:20:31 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-08-09 10:47:30 -0600
commita37013d41f0702cbdf2aee6dce95d26dafc069b4 (patch)
tree16cc67c99f5319279a32a07c1fd1b52dccd13867 /src/bextutil/inc/bextutil.h
parent2ded319a01a9ec42b637a677813d394cd7eda6b9 (diff)
downloadwix-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.h20
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********************************************************************/
78DAPI_(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********************************************************************/
98DAPI_(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