]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/main.hh
072813b2f1226b9ebf8e4d99b6aba102b1d33790
[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--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8 #ifndef MAIN_HH
9 #define MAIN_HH
10 #include "lily-proto.hh"
11
12 void debug_init();
13 void set_debug (bool);
14 void do_scores();
15 void clear_scores();
16 void add_score (Score* s);
17 void set_default_output (String s);
18 String find_file (String);
19 String get_version_str();
20 void call_constructors ();
21 extern Sources* source_global_l;
22 extern bool no_paper_global_b;
23 extern bool no_timestamps_global_b;
24 extern bool find_quarts_global_b;
25 extern int exit_status_i_;
26 extern bool experimental_features_global_b;
27 extern Lookup* global_lookup_l;
28 extern bool dependency_global_b;
29 extern bool version_ignore_global_b;
30
31
32 extern Array<String> get_inclusion_names ();
33 extern void set_inclusion_names (Array<String>);
34
35 extern File_path global_path;
36
37 extern String default_outname_base_global;
38 extern String default_outname_suffix_global;
39 extern int default_count_global;
40 #endif