mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-11 13:30:02 -05:00
some updates for pa_hashmap
add property infrastructure add module module-x11-publish allow ldpreloading of all modules abstract x11wrap from module-x11-bell git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@268 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
4e5c44de30
commit
899788b4c5
36 changed files with 827 additions and 90 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue