Changeset 40191 in vbox for trunk/include
- Timestamp:
- Feb 21, 2012 10:02:15 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76355
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r40029 r40191 870 870 /** Buffer underflow. */ 871 871 #define VINF_BUFFER_UNDERFLOW 22401 872 /** Uneven input. 872 /** Uneven input. */ 873 873 #define VERR_UNEVEN_INPUT (-22402) 874 /** Something is not available or not working properly. */ 875 #define VERR_NOT_AVAILABLE (-22403) 874 876 /** @} */ 875 877 … … 1697 1699 /** @} */ 1698 1700 1701 /* see above, 22400..22499 is used for misc codes! */ 1702 1699 1703 /** @name Logger status codes 1700 1704 * @{ */ 1701 1705 /** Power off is not supported by the hardware or the OS. */ 1702 #define VERR_SYS_CANNOT_POWER_OFF (-22 400)1706 #define VERR_SYS_CANNOT_POWER_OFF (-22500) 1703 1707 /** The halt action was requested, but the OS may actually power 1704 1708 * off the machine. */ 1705 #define VINF_SYS_MAY_POWER_OFF (22 401)1709 #define VINF_SYS_MAY_POWER_OFF (22501) 1706 1710 /** Shutdown failed. */ 1707 #define VERR_SYS_SHUTDOWN_FAILED (-22 402)1711 #define VERR_SYS_SHUTDOWN_FAILED (-22502) 1708 1712 /** @} */ 1709 1713 … … 1711 1715 * @{ */ 1712 1716 /** Filesystem can't be opened because it is corrupt. */ 1713 #define VERR_FILESYSTEM_CORRUPT (-22 500)1717 #define VERR_FILESYSTEM_CORRUPT (-22600) 1714 1718 /** @} */ 1715 1719
Note:
See TracChangeset
for help on using the changeset viewer.