Changeset 76423 in vbox for trunk/include/iprt
- Timestamp:
- Dec 23, 2018 8:30:52 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/errcore.h
r76421 r76423 803 803 * @ingroup grp_rt_err */ 804 804 #define VERR_INVALID_FLAGS (-13) 805 /** Incorrect call order. 806 * @ingroup grp_rt_err */ 807 #define VERR_WRONG_ORDER (-22) 805 808 /** Invalid function. 806 809 * @ingroup grp_rt_err */ … … 836 839 * @ingroup grp_rt_err */ 837 840 #define VERR_TOO_MUCH_DATA (-42) 841 /** Retry the operation. 842 * @ingroup grp_rt_err */ 843 #define VERR_TRY_AGAIN (-52) 844 /** Retry the operation. 845 * @ingroup grp_rt_err */ 846 #define VINF_TRY_AGAIN 52 847 /** Generic parse error. 848 * @ingroup grp_rt_err */ 849 #define VERR_PARSE_ERROR (-53) 850 /** Value out of range. 851 * @ingroup grp_rt_err */ 852 #define VERR_OUT_OF_RANGE (-54) 853 /** A numeric conversion encountered a value which was too big for the target. 854 * @ingroup grp_rt_err */ 855 #define VERR_NUMBER_TOO_BIG (-55) 856 /** A numeric conversion encountered a value which was too big for the target. 857 * @ingroup grp_rt_err */ 858 #define VWRN_NUMBER_TOO_BIG 55 838 859 /** The operation was cancelled by the user (copy) or another thread (local ipc). 839 860 * @ingroup grp_rt_err */ … … 872 893 * @ingroup grp_rt_err */ 873 894 #define VERR_END_OF_STRING (-83) 895 /** Return instigated by a callback or similar. 896 * @ingroup grp_rt_err */ 897 #define VERR_CALLBACK_RETURN (-88) 898 /** Return instigated by a callback or similar. 899 * @ingroup grp_rt_err */ 900 #define VINF_CALLBACK_RETURN 88 874 901 /** Duplicate something. 875 902 * @ingroup grp_rt_err */ … … 914 941 * @ingroup grp_rt_err */ 915 942 #define VERR_INTERNAL_ERROR (-225) 916 943 /** RTGetOpt: Not an option. 944 * @ingroup grp_rt_err */ 945 #define VINF_GETOPT_NOT_OPTION 828 917 946 918 947 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.