]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/main.hh
release: 1.3.139
[lilypond.git] / lily / include / main.hh
1 /*
2   main.hh -- declare global entry points
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #ifndef MAIN_HH
9 #define MAIN_HH
10
11 #include "lily-proto.hh"
12
13 void debug_init ();
14 void set_debug (bool);
15 void do_scores ();
16 void clear_scores ();
17 void add_score (Score* s);
18 void set_default_output (String s);
19 String find_file (String);
20 void call_constructors ();
21 extern Array<String> get_inclusion_names ();
22 extern void set_inclusion_names (Array<String>);
23
24 /* options */
25 extern bool dependency_global_b;
26 extern String dependency_prefix_global;
27 extern Array<String> dump_header_fieldnames_global;
28 extern bool midi_debug_global_b;
29 extern bool no_paper_global_b;
30 extern String output_format_global;
31 extern String output_name_global;
32 extern bool safe_global_b;
33 extern bool verbose_global_b;
34
35 /* misc */
36 extern All_font_metrics *all_fonts_global_p;
37 extern int exit_status_global;
38 extern File_path global_path;
39 extern int score_count_global;
40 extern Sources* source_global_l;
41
42 class ostream;
43 void print_lilypond_versions (ostream &os);
44
45 #endif /* MAIN_HH */