aboutsummaryrefslogtreecommitdiff
path: root/src/bextutil/inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/bextutil/inc')
-rw-r--r--src/bextutil/inc/IBundleExtensionEngine.h8
-rw-r--r--src/bextutil/inc/bextutil.h20
2 files changed, 22 insertions, 6 deletions
diff --git a/src/bextutil/inc/IBundleExtensionEngine.h b/src/bextutil/inc/IBundleExtensionEngine.h
index 869c6695..7772b016 100644
--- a/src/bextutil/inc/IBundleExtensionEngine.h
+++ b/src/bextutil/inc/IBundleExtensionEngine.h
@@ -42,11 +42,6 @@ DECLARE_INTERFACE_IID_(IBundleExtensionEngine, IUnknown, "9D027A39-F6B6-42CC-973
42 __in_z LPCWSTR wzMessage 42 __in_z LPCWSTR wzMessage
43 ) = 0; 43 ) = 0;
44 44
45 STDMETHOD(SetVariableLiteralString)(
46 __in_z LPCWSTR wzVariable,
47 __in_z_opt LPCWSTR wzValue
48 ) = 0;
49
50 STDMETHOD(SetVariableNumeric)( 45 STDMETHOD(SetVariableNumeric)(
51 __in_z LPCWSTR wzVariable, 46 __in_z LPCWSTR wzVariable,
52 __in LONGLONG llValue 47 __in LONGLONG llValue
@@ -54,7 +49,8 @@ DECLARE_INTERFACE_IID_(IBundleExtensionEngine, IUnknown, "9D027A39-F6B6-42CC-973
54 49
55 STDMETHOD(SetVariableString)( 50 STDMETHOD(SetVariableString)(
56 __in_z LPCWSTR wzVariable, 51 __in_z LPCWSTR wzVariable,
57 __in_z_opt LPCWSTR wzValue 52 __in_z_opt LPCWSTR wzValue,
53 __in BOOL fFormatted
58 ) = 0; 54 ) = 0;
59 55
60 STDMETHOD(SetVariableVersion)( 56 STDMETHOD(SetVariableVersion)(
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