Changeset 27639 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Mar 23, 2010 3:28:26 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/message.cpp
r27301 r27639 123 123 124 124 125 RTDECL(int) RTMsgErrorRc(int rcRet, const char *pszFormat, ...) 126 { 127 va_list va; 128 va_start(va, pszFormat); 129 RTMsgErrorV(pszFormat, va); 130 va_end(va); 131 return rcRet; 132 } 133 RT_EXPORT_SYMBOL(RTMsgErrorRcV); 134 135 136 RTDECL(int) RTMsgErrorRcV(int rcRet, const char *pszFormat, va_list va) 137 { 138 RTMsgErrorV(pszFormat, va); 139 return rcRet; 140 } 141 RT_EXPORT_SYMBOL(RTMsgErrorRcV); 142 143 125 144 RTDECL(RTEXITCODE) RTMsgInitFailure(int rcRTR3Init) 126 145 {
Note:
See TracChangeset
for help on using the changeset viewer.