]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/ly-module.hh
(triangle): add s to 0triangle.
[lilypond.git] / lily / include / ly-module.hh
index a270341f55c353b8123c506576c7a749ba5c0e03..09768502a09c94d6cd617ed896046773aa5ef1ad 100644 (file)
@@ -1,27 +1,25 @@
 /*
   ly-module.hh -- declare  module related helper functions 
 
- source file of the GNU LilyPond music typesetter
 source file of the GNU LilyPond music typesetter
 
  (c) 2002--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-
  */
-
 #ifndef LY_MODULE_HH
 #define LY_MODULE_HH
 
 #include "lily-guile.hh"
 
-SCM ly_make_anonymous_module ();
-void ly_import_module (SCM dest, SCM src);
-SCM ly_module_to_alist (SCM mod);
+SCM ly_make_anonymous_module (bool safe);
+SCM ly_module_copy (SCM dest, SCM src);
+SCM ly_module2alist (SCM mod);
 SCM ly_module_lookup (SCM module, SCM sym);
-SCM ly_modules_lookup (SCM modules, 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_module_p (SCM x) { return SCM_MODULEP(x); }
+inline bool ly_c_module_p (SCM x) { return SCM_MODULEP(x); }
 void ly_clear_anonymous_modules ();
-
+SCM ly_use_module (SCM mod, SCM used);
 
 #endif /* LY_MODULE_HH */