mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-07 13:30:03 -05:00
dbus: Three entangled changes:
* Make the dbus object constructors take a pa_dbusiface_core pointer as an argument. Remove the path_prefix argument. * Expose the core object path as a constant in protocol-dbus.h. * Move the core interface name constant from iface-core.h to protocol-dbus.h.
This commit is contained in:
parent
1457df40ee
commit
fcf68752e6
17 changed files with 113 additions and 91 deletions
|
|
@ -32,10 +32,12 @@
|
|||
#include <pulsecore/sink.h>
|
||||
#include <pulsecore/source.h>
|
||||
|
||||
#include "iface-core.h"
|
||||
|
||||
typedef struct pa_dbusiface_device pa_dbusiface_device;
|
||||
|
||||
pa_dbusiface_device *pa_dbusiface_device_new_sink(pa_sink *sink, const char *path_prefix);
|
||||
pa_dbusiface_device *pa_dbusiface_device_new_source(pa_source *source, const char *path_prefix);
|
||||
pa_dbusiface_device *pa_dbusiface_device_new_sink(pa_dbusiface_core *core, pa_sink *sink);
|
||||
pa_dbusiface_device *pa_dbusiface_device_new_source(pa_dbusiface_core *core, pa_source *source);
|
||||
void pa_dbusiface_device_free(pa_dbusiface_device *d);
|
||||
|
||||
const char *pa_dbusiface_device_get_path(pa_dbusiface_device *d);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue