]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/ly-module.hh
* lily/paper-score.cc (process): Do not show progress newline.
[lilypond.git] / lily / include / ly-module.hh
1 /*
2   ly-module.hh -- declare  module related helper functions 
3
4  source file of the GNU LilyPond music typesetter
5
6  (c) 2002--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7
8  */
9
10 #ifndef LY_MODULE_HH
11 #define LY_MODULE_HH
12
13 #include "lily-guile.hh"
14
15 SCM ly_make_anonymous_module (bool safe);
16 void ly_import_module (SCM dest, SCM src);
17 SCM ly_module2alist (SCM mod);
18 SCM ly_module_lookup (SCM module, SCM sym);
19 SCM ly_modules_lookup (SCM modules, SCM sym, SCM);
20 SCM ly_module_symbols (SCM mod);
21 void  ly_reexport_module (SCM mod);
22 inline bool ly_c_module_p (SCM x) { return SCM_MODULEP(x); }
23 void ly_clear_anonymous_modules ();
24 SCM ly_use_module (SCM mod, SCM used);
25
26 #endif /* LY_MODULE_HH */
27