X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fly-module.hh;h=abb4b200405cee65221ea27a28fd949eb2139674;hb=c5a3f0c024f4cb629811cff9eb04abff36e94138;hp=1862845cdeca46e85c491a1e59bbc69a9e31959f;hpb=0edd05338002d79dc305e89ee1cb31dbed83fba9;p=lilypond.git diff --git a/lily/include/ly-module.hh b/lily/include/ly-module.hh index 1862845cde..abb4b20040 100644 --- a/lily/include/ly-module.hh +++ b/lily/include/ly-module.hh @@ -1,25 +1,31 @@ /* - ly-module.hh -- declare module related helper functions + ly-module.hh -- declare module related helper functions source file of the GNU LilyPond music typesetter - (c) 2002--2004 Han-Wen Nienhuys - */ + (c) 2002--2007 Han-Wen Nienhuys +*/ #ifndef LY_MODULE_HH #define LY_MODULE_HH #include "lily-guile.hh" SCM ly_make_anonymous_module (bool safe); -SCM ly_import_module (SCM dest, SCM src); -SCM ly_module2alist (SCM mod); +SCM ly_module_copy (SCM dest, SCM src); +SCM ly_module_2_alist (SCM mod); SCM ly_module_lookup (SCM module, SCM sym); SCM ly_modules_lookup (SCM modules, SCM sym, SCM); SCM ly_module_symbols (SCM mod); -void ly_reexport_module (SCM mod); -inline bool ly_c_module_p (SCM x) { return SCM_MODULEP(x); } -void ly_clear_anonymous_modules (); +void ly_reexport_module (SCM mod); +inline bool ly_is_module (SCM x) { return SCM_MODULEP (x); } +SCM ly_clear_anonymous_modules (); +void clear_anonymous_modules (); SCM ly_use_module (SCM mod, SCM used); +/* Ugh signature of scm_internal_hash_fold () is inaccurate. */ +typedef SCM (*Hash_closure_function) (GUILE_ELLIPSIS); + +#define MODULE_GC_KLUDGE + #endif /* LY_MODULE_HH */