1 /* demo_info_options.h */
2 
3 /* File autogenerated by gengetopt version 2.3  */
4 
5 #ifndef _demo_info_options_h
6 #define _demo_info_options_h
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif /* __cplusplus */
11 
12 /* Don't define PACKAGE and VERSION if we use automake.  */
13 #if defined PACKAGE
14 #  undef PACKAGE
15 #endif
16 #define PACKAGE "id3info"
17 #ifndef VERSION
18 /* ******* WRITE THE VERSION OF YOUR PROGRAM HERE ******* */
19 #define VERSION ""
20 #endif
21 
22 struct gengetopt_args_info {
23   int assign_flag;	/* Test the assignment operator (default=off).  */
24   int warning_flag;	/* Turn on warnings (for debugging) (default=off).  */
25   int notice_flag;	/* Turn on notices (for debugging) (default=off).  */
26 
27   int help_given ;	/* Whether help was given.  */
28   int version_given ;	/* Whether version was given.  */
29   int assign_given ;	/* Whether assign was given.  */
30   int warning_given ;	/* Whether warning was given.  */
31   int notice_given ;	/* Whether notice was given.  */
32 
33   char **inputs ; /* unamed options */
34   unsigned inputs_num ; /* unamed options number */
35 } ;
36 
37 int cmdline_parser (int argc, char * const *argv, struct gengetopt_args_info *args_info);
38 
39 void cmdline_parser_print_help(void);
40 void cmdline_parser_print_version(void);
41 
42 #ifdef __cplusplus
43 }
44 #endif /* __cplusplus */
45 #endif /* _demo_info_options_h */
46