]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/ly-module.hh
* lily/paper-outputter.cc (output_expr):
[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 ();
16 void ly_copy_module_variables (SCM dest, SCM src);
17 SCM ly_module_to_alist (SCM mod);
18 SCM ly_module_lookup (SCM module, SCM sym);
19 SCM ly_modules_lookup (SCM modules, SCM sym);
20 SCM ly_module_symbols (SCM mod);
21 void  ly_reexport_module (SCM mod);
22 inline bool ly_module_p (SCM x) { return SCM_MODULEP(x); }
23 void ly_clear_anonymous_modules ();
24
25 #endif /* LY_MODULE_HH */
26