Changeset 37665 in vbox for trunk/include/iprt
- Timestamp:
- Jun 28, 2011 12:32:13 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72521
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/getopt.h
r33911 r37665 4 4 5 5 /* 6 * Copyright (C) 2007 Oracle Corporation6 * Copyright (C) 2007-2011 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 93 93 /** The index value is attached to the argument - only valid for long arguments. */ 94 94 #define RTGETOPT_FLAG_INDEX RT_BIT(19) 95 /** Treat the long option as case insensitive. */ 96 #define RTGETOPT_FLAG_ICASE RT_BIT(20) 95 97 /** Mask of valid bits - for validation. */ 96 98 #define RTGETOPT_VALID_MASK ( RTGETOPT_REQ_MASK \ … … 98 100 | RTGETOPT_FLAG_OCT \ 99 101 | RTGETOPT_FLAG_DEC \ 100 | RTGETOPT_FLAG_INDEX) 102 | RTGETOPT_FLAG_INDEX \ 103 | RTGETOPT_FLAG_ICASE) 101 104 /** @} */ 102 105
Note:
See TracChangeset
for help on using the changeset viewer.