diff options
Diffstat (limited to 'libguile/dynl.h')
-rw-r--r-- | libguile/dynl.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libguile/dynl.h b/libguile/dynl.h index 723d2e950..c61805752 100644 --- a/libguile/dynl.h +++ b/libguile/dynl.h @@ -47,10 +47,16 @@ +void scm_register_module_xxx SCM_P ((char *module_name, void *init_func)); +SCM scm_registered_modules SCM_P (()); +SCM scm_clear_registered_modules SCM_P (()); + SCM scm_dynamic_link SCM_P ((SCM fname)); -SCM scm_dynamic_call SCM_P ((SCM symb, SCM shl)); -SCM scm_dynamic_args_call SCM_P ((SCM symb, SCM shl, SCM args)); -SCM scm_dynamic_unlink SCM_P ((SCM shl)); +SCM scm_dynamic_unlink SCM_P ((SCM dobj)); +SCM scm_dynamic_object_p SCM_P ((SCM obj)); +SCM scm_dynamic_func SCM_P ((SCM symb, SCM dobj)); +SCM scm_dynamic_call SCM_P ((SCM symb, SCM dobj)); +SCM scm_dynamic_args_call SCM_P ((SCM symb, SCM dobj, SCM args)); void scm_init_dynamic_linking SCM_P ((void)); |