diff options
Diffstat (limited to '')
-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 |