Changeset 5911 in vbox
- Timestamp:
- Dec 2, 2007 9:21:00 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/getopt.h
r5843 r5911 155 155 * that require an argument, this contains the value of that argument, depending on the type that is required. 156 156 */ 157 RTDECL(int) RTGetOpt(int argc, c har *argv[], PCRTOPTIONDEF paOptions, size_t cOptions, int *piThis, PRTOPTIONUNION pValueUnion);157 RTDECL(int) RTGetOpt(int argc, const char *argv[], PCRTOPTIONDEF paOptions, size_t cOptions, int *piThis, PRTOPTIONUNION pValueUnion); 158 158 159 159 /** @} */ -
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r5843 r5911 26 26 27 27 28 RTDECL(int) RTGetOpt(int argc, c har *argv[], PCRTOPTIONDEF paOptions, size_t cOptions, int *piThis, PRTOPTIONUNION pValueUnion)28 RTDECL(int) RTGetOpt(int argc, const char *argv[], PCRTOPTIONDEF paOptions, size_t cOptions, int *piThis, PRTOPTIONUNION pValueUnion) 29 29 { 30 30 pValueUnion->pDef = NULL; -
trunk/src/VBox/Runtime/testcase/tstGetOpt.cpp
r5843 r5911 52 52 }; 53 53 54 c har *argv2[] =54 const char *argv2[] = 55 55 { 56 56 "-s", "string1",
Note:
See TracChangeset
for help on using the changeset viewer.