]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/program-option.hh
* lily/program-option.cc: rename from scm-option.cc
[lilypond.git] / lily / include / program-option.hh
1 /*
2   program-option.hh -- declare Scheme options
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2001--2005 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8 #ifndef SCM_OPTION_HH
9 #define SCM_OPTION_HH
10
11 #include "lily-guile.hh"
12
13 /* options */
14 extern bool do_midi_debugging_global;
15 extern int testing_level_global;
16 extern bool lily_1_8_relative;
17 extern bool lily_1_8_compatibility_used;
18
19
20 SCM ly_get_option (SCM);
21 SCM ly_set_option (SCM, SCM);
22
23 struct Lilypond_option_init
24 {
25   char const *name_;
26   char const *init_;
27   char const *descr_;
28 };
29
30
31 #endif /* SCM_OPTION_HH */