Changeset 8402 in vbox for trunk/include
- Timestamp:
- Apr 26, 2008 5:13:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r8391 r8402 263 263 */ 264 264 RTDECL(PCRTWINERRMSG) RTErrWinGet(long rc); 265 #endif /* RT_OS_WINDOWS */ 265 266 /** On windows COM errors are part of the Windows error database. */ 267 typedef RTWINERRMSG RTCOMERRMSG; 268 269 #else /* !RT_OS_WINDOWS */ 270 271 /** 272 * COM/XPCOM error code message. 273 */ 274 typedef struct RTCOMERRMSG 275 { 276 /** Pointer to the full message string. */ 277 const char *pszMsgFull; 278 /** Pointer to the define string. */ 279 const char *pszDefine; 280 /** Error code number. */ 281 uint32_t iCode; 282 } RTCOMERRMSG; 283 #endif /* !RT_OS_WINDOWS */ 284 /** Pointer to a XPCOM/COM error code message. */ 285 typedef RTCOMERRMSG *PRTCOMERRMSG; 286 /** Pointer to const a XPCOM/COM error code message. */ 287 typedef const RTCOMERRMSG *PCRTCOMERRMSG; 288 289 /** 290 * Get the message structure corresponding to a given COM/XPCOM error code. 291 * 292 * @returns Pointer to read-only message description. 293 * @param rc The status code. 294 */ 295 RTDECL(PCRTCOMERRMSG) RTErrCOMGet(uint32_t rc); 266 296 267 297 #endif /* IN_RING3 */
Note:
See TracChangeset
for help on using the changeset viewer.