mpeg4ip_getopt.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #ifdef WIN32
  2. #define HAVE_IN_PORT_T
  3. #define HAVE_SOCKLEN_T
  4. #else
  5. #include "../config.h"
  6. #endif
  7. #ifdef HAVE_UNISTD_H
  8. #include <unistd.h>
  9. #endif
  10. #ifdef HAVE_GETOPT_H
  11. #include <getopt.h>
  12. #endif
  13. #if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_LONG)
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /* For communication from `getopt' to the caller.
  18.    When `getopt' finds an option that takes an argument,
  19.    the argument value is returned here.
  20.    Also, when `ordering' is RETURN_IN_ORDER,
  21.    each non-option ARGV-element is returned here.  */
  22. extern char *optarg;
  23. /* Index in ARGV of the next element to be scanned.
  24.    This is used for communication to and from the caller
  25.    and for communication between successive calls to `getopt'.
  26.    On entry to `getopt', zero means this is the first call; initialize.
  27.    When `getopt' returns -1, this is the index of the first of the
  28.    non-option elements that the caller should itself scan.
  29.    Otherwise, `optind' communicates from one call to the next
  30.    how much of ARGV has been scanned so far.  */
  31. extern int optind;
  32. /* Callers store zero here to inhibit the error message `getopt' prints
  33.    for unrecognized options.  */
  34. extern int opterr;
  35. /* Set to an option character which was unrecognized.  */
  36. extern int optopt;
  37. /* Describe the long-named options requested by the application.
  38.    The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
  39.    of `struct option' terminated by an element containing a name which is
  40.    zero.
  41.    The field `has_arg' is:
  42.    no_argument (or 0) if the option does not take an argument,
  43.    required_argument (or 1) if the option requires an argument,
  44.    optional_argument  (or 2) if the option takes an optional argument.
  45.    If the field `flag' is not NULL, it points to a variable that is set
  46.    to the value given in the field `val' when the option is found, but
  47.    left unchanged if the option is not found.
  48.    To have a long-named option do something other than set an `int' to
  49.    a compiled-in constant, such as set a value from `optarg', set the
  50.    option's `flag' field to zero and its `val' field to a nonzero
  51.    value (the equivalent single-letter option character, if there is
  52.    one).  For long options that have a zero `flag' field, `getopt'
  53.    returns the contents of the `val' field.  */
  54. struct option
  55. {
  56. # if defined __STDC__ && __STDC__
  57.   const char *name;
  58. # else
  59.   char *name;
  60. # endif
  61.   /* has_arg can't be an enum because some compilers complain about
  62.      type mismatches in all the code that assumes it is an int.  */
  63.   int has_arg;
  64.   int *flag;
  65.   int val;
  66. };
  67. /* Names for the values of the `has_arg' field of `struct option'.  */
  68. # define no_argument 0
  69. # define required_argument 1
  70. # define optional_argument 2
  71. #ifdef __cplusplus
  72. }
  73. #endif
  74. #endif
  75. #ifndef HAVE_GETOPT
  76. #ifdef __cplusplus
  77. extern "C" {
  78. #endif
  79. /* Get definitions and prototypes for functions to process the
  80.    arguments in ARGV (ARGC of them, minus the program name) for
  81.    options given in OPTS.
  82.    Return the option character from OPTS just read.  Return -1 when
  83.    there are no more options.  For unrecognized options, or options
  84.    missing arguments, `optopt' is set to the option letter, and '?' is
  85.    returned.
  86.    The OPTS string is a list of characters which are recognized option
  87.    letters, optionally followed by colons, specifying that that letter
  88.    takes an argument, to be placed in `optarg'.
  89.    If a letter in OPTS is followed by two colons, its argument is
  90.    optional.  This behavior is specific to the GNU `getopt'.
  91.    The argument `--' causes premature termination of argument
  92.    scanning, explicitly telling `getopt' that there are no more
  93.    options.
  94.    If OPTS begins with `--', then non-option arguments are treated as
  95.    arguments to the option ''.  This behavior is specific to the GNU
  96.    `getopt'.  */
  97. /* Many other libraries have conflicting prototypes for getopt, with
  98.    differences in the consts, in stdlib.h.  To avoid compilation
  99.    errors, only prototype getopt for the GNU C library.  */
  100. extern int getopt (int __argc, char *const *__argv, const char *__shortopts);
  101. #ifdef __cplusplus
  102. }
  103. #endif
  104. #endif
  105. #ifndef HAVE_GETOPT_LONG  
  106. #ifdef __cplusplus
  107. extern "C" {
  108. #endif
  109. extern int getopt_long (int __argc, char *const *__argv, const char *__shortopts,
  110.         const struct option *__longopts, int *__longind);
  111. extern int getopt_long_only (int __argc, char *const *__argv,
  112.      const char *__shortopts,
  113.              const struct option *__longopts, int *__longind);
  114.   extern int _getopt_internal (int __argc, char *const *argv,
  115.        const char *optstring,
  116.        const struct option *longopts,
  117.        int *longind, int long_only);
  118. #ifdef __cplusplus
  119. }
  120. #endif
  121. #endif