Changeset 17078 in vbox for trunk/include/iprt/getopt.h
- Timestamp:
- Feb 24, 2009 4:59:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/getopt.h
r14326 r17078 93 93 * This doesn't have to be a character, it may also be a \#define or enum value if 94 94 * there isn't any short version of this option. */ 95 int iShort;95 uint32_t uShort; 96 96 /** The flags (RTGETOPT_*). */ 97 97 unsigned fFlags; … … 202 202 * Error("missing case: %c\n", ch); 203 203 * else if (ValueUnion.pDef) 204 * Error("%s: %Rr c, ValueUnion.pDef->pszLong);204 * Error("%s: %Rrs", ValueUnion.pDef->pszLong, ch); 205 205 * else 206 * Error("%Rr c, ValueUnion.pDef->pszLong);206 * Error("%Rrs", ch); 207 207 * return 1; 208 208 * }
Note:
See TracChangeset
for help on using the changeset viewer.