Changes between Version 6 and Version 7 of kOptions


Ignore:
Timestamp:
Jun 5, 2008, 1:46:56 AM (16 years ago)
Author:
guest
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • kOptions

    v6 v7  
    6161Finally, there are a couple of special functions which simplify porting of Unix programs:
    6262 * {{{_wildcard (int *argc, char ***argv)}}}: Same as in EMX, i.e. it expands it's arguments like a unix shell would do (but OS/2 cmd.exe doesn't), so you typically want to use this when porting a unix command line application. Instead of adding this to a program, compilation with -Zargs-wild can be used.
    63  * {{{_response (int *argc, char ***argv)}}}: Same as in EMX. Expand response files {{{(@FILENAME)}}}. The FILENAME contains a list of arguments, one per line. Arguments enclosed in double quotes will not be expanded. If a response file can not be opened, the argument is kept the same.
     63 * {{{_response (int *argc, char ***argv)}}}: Same as in EMX. Expand response files {{{(@FILENAME)}}}. The FILENAME contains a list of arguments, one per line. Arguments enclosed in double quotes will not be expanded. If a response file can not be opened, the argument is kept the same. -Zargs-resp will automatically compile this in.