]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/ly-modules.hh
2003 -> 2004
[lilypond.git] / lily / include / ly-modules.hh
1 /*
2   ly-modules.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_MODULES_HH
11 #define LY_MODULES_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_module_symbols (SCM mod);
20 void  ly_reexport_module (SCM mod);
21 inline bool ly_module_p (SCM x) { return SCM_MODULEP(x); }
22 void ly_clear_anonymous_modules ();
23
24 #endif /* LY_MODULES_HH */
25