1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef SCM_EXTENSIONS_H
- #define SCM_EXTENSIONS_H
- #include "libguile/__scm.h"
- typedef void (*scm_t_extension_init_func)(void*);
- SCM_API void scm_c_register_extension (const char *lib, const char *init,
- void (*func) (void *), void *data);
- SCM_API void scm_c_load_extension (const char *lib, const char *init);
- SCM_API SCM scm_load_extension (SCM lib, SCM init);
- SCM_INTERNAL void scm_init_extensions (void);
- #endif
|