Changeset 96504 in vbox for trunk/src/VBox/Runtime/common/misc/message.cpp
- Timestamp:
- Aug 25, 2022 10:41:51 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/message.cpp
r96407 r96504 211 211 212 212 213 RTDECL(RTEXITCODE) RTMsgSyntax(const char *pszFormat, ...) 214 { 215 va_list va; 216 va_start(va, pszFormat); 217 RTMsgSyntaxV(pszFormat, va); 218 va_end(va); 219 return RTEXITCODE_SYNTAX; 220 } 221 RT_EXPORT_SYMBOL(RTMsgSyntax); 222 223 224 RTDECL(RTEXITCODE) RTMsgSyntaxV(const char *pszFormat, va_list va) 225 { 226 rtMsgWorker(g_pStdOut, "syntax error: ", pszFormat, va); 227 return RTEXITCODE_SYNTAX; 228 } 229 RT_EXPORT_SYMBOL(RTMsgSyntaxV); 230 231 213 232 RTDECL(int) RTMsgWarning(const char *pszFormat, ...) 214 233 {
Note:
See TracChangeset
for help on using the changeset viewer.