1 /* demo_copy_options.h */
2 
3 /* File autogenerated by gengetopt version 2.3  */
4 
5 #ifndef _demo_copy_options_h
6 #define _demo_copy_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 "id3cp"
17 #ifndef VERSION
18 /* ******* WRITE THE VERSION OF YOUR PROGRAM HERE ******* */
19 #define VERSION ""
20 #endif
21 
22 struct gengetopt_args_info {
23   int v1tag_flag;	/* Render only the id3v1 tag (default=off).  */
24   int v2tag_flag;	/* Render only the id3v2 tag (default=off).  */
25   int warning_flag;	/* Turn on warnings (for debugging) (default=off).  */
26   int notice_flag;	/* Turn on notices (for debugging) (default=off).  */
27 
28   int help_given ;	/* Whether help was given.  */
29   int version_given ;	/* Whether version was given.  */
30   int v1tag_given ;	/* Whether v1tag was given.  */
31   int v2tag_given ;	/* Whether v2tag was given.  */
32   int warning_given ;	/* Whether warning was given.  */
33   int notice_given ;	/* Whether notice was given.  */
34 
35   char **inputs ; /* unamed options */
36   unsigned inputs_num ; /* unamed options number */
37 } ;
38 
39 int cmdline_parser (int argc, char * const *argv, struct gengetopt_args_info *args_info);
40 
41 void cmdline_parser_print_help(void);
42 void cmdline_parser_print_version(void);
43 
44 #ifdef __cplusplus
45 }
46 #endif /* __cplusplus */
47 #endif /* _demo_copy_options_h */
48