Changeset 26176 in vbox for trunk/include
- Timestamp:
- Feb 2, 2010 10:20:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r26147 r26176 1516 1516 /* SED-END */ 1517 1517 1518 1519 /** @def VBOX_SUCCESS1520 * Check for success.1521 *1522 * @returns true if rc indicates success.1523 * @returns false if rc indicates failure.1524 *1525 * @param rc The iprt status code to test.1526 */1527 #define VBOX_SUCCESS(rc) RT_SUCCESS(rc)1528 1529 /** @def VBOX_FAILURE1530 * Check for failure.1531 *1532 * @returns true if rc indicates failure.1533 * @returns false if rc indicates success.1534 *1535 * @param rc The iprt status code to test.1536 */1537 #define VBOX_FAILURE(rc) RT_FAILURE(rc)1538 1539 1518 /** @} */ 1540 1519
Note:
See TracChangeset
for help on using the changeset viewer.