Changeset 26674 in vbox for trunk/include/iprt
- Timestamp:
- Feb 22, 2010 9:41:17 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57891
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/message.h
r24825 r26674 70 70 RTDECL(int) RTMsgErrorV(const char *pszFormat, va_list va); 71 71 72 /** 73 * Print an error message for a RTR3Init failure and suggest an exit code. 74 * 75 * @code 76 * 77 * int rc = RTR3Init(); 78 * if (RT_FAILURE(rc)) 79 * return RTMsgInitFailure(rc); 80 * 81 * @endcode 82 * 83 * @returns Appropriate exit code. 84 * @param rcRTR3Init The status code returned by RTR3Init. 85 */ 86 RTDECL(int) RTMsgInitFailure(int rcRTR3Init); 87 72 88 /** @} */ 73 89
Note:
See TracChangeset
for help on using the changeset viewer.