Changeset 100772 in vbox for trunk/include
- Timestamp:
- Aug 1, 2023 5:34:48 PM (17 months ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/usbfilter.h
r98103 r100772 73 73 /** Numeric Field: Exact match or not present. */ 74 74 USBFILTERMATCH_NUM_EXACT_NP, 75 /** Numeric Field: Expression match, required to be present.76 * The expression is represented as a string. */77 USBFILTERMATCH_NUM_EXPRESSION,78 /** Numeric Field: Expression match or not present.79 * The expression is represented as a string. */80 USBFILTERMATCH_NUM_EXPRESSION_NP,81 75 /** Numeric Field: The last numeric field matching method (inclusive). */ 82 USBFILTERMATCH_NUM_LAST = USBFILTERMATCH_NUM_EX PRESSION_NP,76 USBFILTERMATCH_NUM_LAST = USBFILTERMATCH_NUM_EXACT_NP, 83 77 84 78 /** String Field: The first string field matching method. */ … … 92 86 /** String Field: Pattern match or not present.*/ 93 87 USBFILTERMATCH_STR_PATTERN_NP, 88 /** String Field: Numerical expression match, required to be present. */ 89 USBFILTERMATCH_NUM_EXPRESSION, 90 /** String Field: Numerical expression match or not present. */ 91 USBFILTERMATCH_NUM_EXPRESSION_NP, 94 92 /** String Field: The last string field matching method (inclusive). */ 95 USBFILTERMATCH_STR_LAST = USBFILTERMATCH_ STR_PATTERN_NP,93 USBFILTERMATCH_STR_LAST = USBFILTERMATCH_NUM_EXPRESSION_NP, 96 94 97 95 /** The end of valid matching methods (exclusive). */ -
trunk/include/iprt/err.h
r100528 r100772 211 211 /** A numeric conversion encountered a value which was too big for the target. */ 212 212 #define VWRN_NUMBER_TOO_BIG 55 213 /** The number be ginconverted (string) contained no digits. */213 /** The number being converted (string) contained no digits. */ 214 214 #define VERR_NO_DIGITS (-56) 215 /** The number be ginconverted (string) contained no digits. */215 /** The number being converted (string) contained no digits. */ 216 216 #define VWRN_NO_DIGITS 56 217 217 /** Encountered a '-' during conversion to an unsigned value. */
Note:
See TracChangeset
for help on using the changeset viewer.