summaryrefslogtreecommitdiffstats
path: root/polyp/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/module.h')
-rw-r--r--polyp/module.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/polyp/module.h b/polyp/module.h
index f422132a..7380f795 100644
--- a/polyp/module.h
+++ b/polyp/module.h
@@ -58,14 +58,10 @@ void pa_module_unload_request(struct pa_module *m);
void pa_module_set_used(struct pa_module*m, int used);
-/* prototypes for the module's entry points */
-int pa__init(struct pa_core *c, struct pa_module*m);
-void pa__done(struct pa_core *c, struct pa_module*m);
-
-#define PA_MODULE_AUTHOR(s) const char *pa__get_author(void) { return s; }
-#define PA_MODULE_DESCRIPTION(s) const char *pa__get_description(void) { return s; }
-#define PA_MODULE_USAGE(s) const char *pa__get_usage(void) { return s; }
-#define PA_MODULE_VERSION(s) const char *pa__get_version(void) { return s; }
+#define PA_MODULE_AUTHOR(s) const char * pa__get_author(void) { return s; }
+#define PA_MODULE_DESCRIPTION(s) const char * pa__get_description(void) { return s; }
+#define PA_MODULE_USAGE(s) const char * pa__get_usage(void) { return s; }
+#define PA_MODULE_VERSION(s) const char * pa__get_version(void) { return s; }
struct pa_modinfo *pa_module_get_info(struct pa_module *m);