Changeset 24140 in vbox for trunk/include
- Timestamp:
- Oct 28, 2009 2:29:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/getopt.h
r23868 r24140 84 84 /** The value must be a valid UUID. */ 85 85 #define RTGETOPT_REQ_UUID 15 86 /** The value must be a string with value as "on" or "off". */ 87 #define RTGETOPT_REQ_BOOL_ONOFF 16 86 88 /** The mask of the valid required types. */ 87 #define RTGETOPT_REQ_MASK 1589 #define RTGETOPT_REQ_MASK 31 88 90 /** Treat the value as hexadecimal - only applicable with the RTGETOPT_REQ_*INT*. */ 89 91 #define RTGETOPT_FLAG_HEX RT_BIT(16) … … 172 174 /** An unsigned integer value. */ 173 175 uint64_t u; 176 /** A boolean flag. */ 177 bool f; 174 178 } RTGETOPTUNION; 175 179 /** Pointer to an option argument union. */
Note:
See TracChangeset
for help on using the changeset viewer.