]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/main.hh
release: 1.0.1
[lilypond.git] / lily / include / main.hh
index fe4f9ad8c2d1be6a367821a44cfd0a6f9485ded6..da5e0a53ef9822c32e46cc8167937a3ff02e3e24 100644 (file)
@@ -1,19 +1,39 @@
+/*
+  main.hh -- declare global entry points
+
+  source file of the GNU LilyPond music typesetter
+
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
 #ifndef MAIN_HH
 #define MAIN_HH
-#include "proto.hh"
+#include "lily-proto.hh"
 
 void debug_init();
-void set_debug(bool);
+void set_debug (bool);
 void do_scores();
-void add_score(Input_score * s);
-void set_default_output(String s);
-Input_score* current_iscore_l();
-String find_file(String);
-const char *get_version();
-extern String infile_str_g;
-extern Source* source_l_g;
-extern bool only_midi;
+void clear_scores();
+void add_score (Score* s);
+void set_default_output (String s);
+String find_file (String);
+String get_version_str();
+void call_constructors ();
+extern Sources* source_global_l;
+extern bool no_paper_global_b;
+extern bool no_timestamps_global_b;
+extern bool find_quarts_global_b;
+extern int exit_status_i_;
+extern bool experimental_features_global_b;
+extern bool dependency_global_b;
+extern bool version_ignore_global_b;
+
+
+extern Array<String> get_inclusion_names ();
+extern void set_inclusion_names (Array<String>);
 
-extern String default_out_fn;
+extern File_path global_path;
 
+extern String default_outname_base_global;
+extern String default_outname_suffix_global;
+extern int default_count_global;
 #endif