X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fly-module.hh;h=4b2d3f800a141bca4d2a9c35da0a4b454969227b;hb=b27fe425c189263be20830b09c859d27245bb550;hp=a270341f55c353b8123c506576c7a749ba5c0e03;hpb=6eef288ea512e1d437aab40736ea056743e4ea02;p=lilypond.git diff --git a/lily/include/ly-module.hh b/lily/include/ly-module.hh index a270341f55..4b2d3f800a 100644 --- a/lily/include/ly-module.hh +++ b/lily/include/ly-module.hh @@ -1,27 +1,35 @@ /* - ly-module.hh -- declare module related helper functions + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 2002--2015 Han-Wen Nienhuys - (c) 2002--2004 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - */ + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . +*/ #ifndef LY_MODULE_HH #define LY_MODULE_HH +#include "config.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_module (bool safe); +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 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); } -void ly_clear_anonymous_modules (); - +void ly_reexport_module (SCM mod); +SCM ly_use_module (SCM mod, SCM used); #endif /* LY_MODULE_HH */