VirtualBox

Changeset 26176 in vbox for trunk/include


Ignore:
Timestamp:
Feb 2, 2010 10:20:13 PM (15 years ago)
Author:
vboxsync
Message:

VBox/err.h,*: Use RT_SUCCESS/FAILURE instead of the VBOX variants, removing the latter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/err.h

    r26147 r26176  
    15161516/* SED-END */
    15171517
    1518 
    1519 /** @def VBOX_SUCCESS
    1520  * 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_FAILURE
    1530  * 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 
    15391518/** @} */
    15401519
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette