Changeset 66594 in vbox for trunk/include/iprt/message.h
- Timestamp:
- Apr 17, 2017 3:29:05 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/message.h
r62473 r66594 98 98 99 99 /** 100 * Same as RTMsgError() except for always returning RTEXITCODE_FAILURE. 101 * 102 * @returns RTEXITCODE_FAILURE 103 * @param pszFormat The message format string. 104 * @param ... Format arguments. 105 */ 106 RTDECL(RTEXITCODE) RTMsgErrorExitFailure(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3); 107 108 /** 109 * Same as RTMsgErrorV() except for always returning RTEXITCODE_FAILURE. 110 * 111 * @returns RTEXITCODE_FAILURE 112 * @param pszFormat The message format string. 113 * @param va Format arguments. 114 */ 115 RTDECL(RTEXITCODE) RTMsgErrorExitFailureV(const char *pszFormat, va_list va) RT_IPRT_FORMAT_ATTR(2, 0); 116 117 /** 100 118 * Same as RTMsgError() except for the return value. 101 119 *
Note:
See TracChangeset
for help on using the changeset viewer.