*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / config.hh
CommitLineData
ea4c19a4 1#ifndef CONFIG_HH
2#define CONFIG_HH
3
4#include <string>
5using namespace std;
6
7/* Global configuration data */
8
9extern string cfg_infile;
10extern string cfg_outfile;
11extern int cfg_infile_set;
12extern int cfg_outfile_set;
13extern int cfg_config_file_set;
14
15extern int cfg_do_help;
16extern int cfg_output_info;
17extern int cfg_output_called;
18extern int cfg_output_exported;
19extern int cfg_output_unsatisfied;
874a2bd8 20extern int cfg_split_objects;
21extern int cfg_split_objects_numbered;
de6b6757 22extern int cfg_split_blocks;
7880ae2d 23extern int cfg_ignore_block_errors;
24extern int cfg_ignore_checksum_errors;
ea4c19a4 25extern int cfg_pause_on_checksum_error;
26extern int cfg_ignore_unknown_block_errors;
27extern int cfg_ignore_object_integrity_errors;
28extern int cfg_list_contents;
29extern int cfg_verbose;
7880ae2d 30extern int cfg_version;
874a2bd8 31extern int cfg_quiet;
ea4c19a4 32
33extern int in_fd; //! File descriptor for data input
34extern int out_fd; //! File descriptor for text output
35
36extern void do_config(int argc, char ** args);
37
38#endif