diff options
Diffstat (limited to 'src/balutil/inc')
-rw-r--r-- | src/balutil/inc/balutil.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/balutil/inc/balutil.h b/src/balutil/inc/balutil.h index 68ef5a4d..e0f5874c 100644 --- a/src/balutil/inc/balutil.h +++ b/src/balutil/inc/balutil.h | |||
@@ -145,6 +145,16 @@ DAPIV_(HRESULT) BalLog( | |||
145 | ); | 145 | ); |
146 | 146 | ||
147 | /******************************************************************* | 147 | /******************************************************************* |
148 | BalLogArgs - logs a message with the engine. | ||
149 | |||
150 | ********************************************************************/ | ||
151 | DAPI_(HRESULT) BalLogArgs( | ||
152 | __in BOOTSTRAPPER_LOG_LEVEL level, | ||
153 | __in_z __format_string LPCSTR szFormat, | ||
154 | __in va_list args | ||
155 | ); | ||
156 | |||
157 | /******************************************************************* | ||
148 | BalLogError - logs an error message with the engine. | 158 | BalLogError - logs an error message with the engine. |
149 | 159 | ||
150 | ********************************************************************/ | 160 | ********************************************************************/ |
@@ -155,6 +165,16 @@ DAPIV_(HRESULT) BalLogError( | |||
155 | ); | 165 | ); |
156 | 166 | ||
157 | /******************************************************************* | 167 | /******************************************************************* |
168 | BalLogErrorArgs - logs an error message with the engine. | ||
169 | |||
170 | ********************************************************************/ | ||
171 | DAPI_(HRESULT) BalLogErrorArgs( | ||
172 | __in HRESULT hr, | ||
173 | __in_z __format_string LPCSTR szFormat, | ||
174 | __in va_list args | ||
175 | ); | ||
176 | |||
177 | /******************************************************************* | ||
158 | BalLogId - logs a message with the engine with a string embedded in a | 178 | BalLogId - logs a message with the engine with a string embedded in a |
159 | MESSAGETABLE resource. | 179 | MESSAGETABLE resource. |
160 | 180 | ||