summaryrefslogtreecommitdiffstats
path: root/src/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/module.h')
-rw-r--r--src/module.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/module.h b/src/module.h
index 98082194..709c7f55 100644
--- a/src/module.h
+++ b/src/module.h
@@ -6,11 +6,6 @@
#include "core.h"
-struct dependency_module {
- lt_dlhandle dl;
- struct dependency_module *next;
-};
-
struct module {
struct core *core;
char *name, *argument;
@@ -30,4 +25,6 @@ void module_unload_by_index(struct core *c, uint32_t index);
void module_unload_all(struct core *c);
+char *module_list_to_string(struct core *c);
+
#endif