Changeset 54970 in vbox for trunk/include
- Timestamp:
- Mar 26, 2015 3:57:35 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99228
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r54408 r54970 1017 1017 /** Not all requests could be submitted due to resource shortage. */ 1018 1018 #define VERR_FILE_AIO_INSUFFICIENT_RESSOURCES (-137) 1019 /** There are not enough events available on the host to create the I/O context. 1020 * This exact meaning is host platform dependent. */ 1021 #define VERR_FILE_AIO_INSUFFICIENT_EVENTS (-138) 1019 1022 /** Device or resource is busy. */ 1020 #define VERR_RESOURCE_BUSY (-13 8)1023 #define VERR_RESOURCE_BUSY (-139) 1021 1024 /** A file operation was attempted on a non-file object. */ 1022 #define VERR_NOT_A_FILE (-1 39)1025 #define VERR_NOT_A_FILE (-140) 1023 1026 /** A non-file operation was attempted on a file object. */ 1024 #define VERR_IS_A_FILE (-14 0)1027 #define VERR_IS_A_FILE (-141) 1025 1028 /** Unexpected filesystem object type. */ 1026 #define VERR_UNEXPECTED_FS_OBJ_TYPE (-14 1)1029 #define VERR_UNEXPECTED_FS_OBJ_TYPE (-142) 1027 1030 /** A path does not start with a root specification. */ 1028 #define VERR_PATH_DOES_NOT_START_WITH_ROOT (-14 2)1031 #define VERR_PATH_DOES_NOT_START_WITH_ROOT (-143) 1029 1032 /** A path is relative, expected an absolute path. */ 1030 #define VERR_PATH_IS_RELATIVE (-14 3)1033 #define VERR_PATH_IS_RELATIVE (-144) 1031 1034 /** A path is not relative (start with root), expected an relative path. */ 1032 #define VERR_PATH_IS_NOT_RELATIVE (-14 4)1035 #define VERR_PATH_IS_NOT_RELATIVE (-145) 1033 1036 /** Zero length path. */ 1034 #define VERR_PATH_ZERO_LENGTH (-14 5)1037 #define VERR_PATH_ZERO_LENGTH (-146) 1035 1038 /** @} */ 1036 1039
Note:
See TracChangeset
for help on using the changeset viewer.