Revert "node manager: adding external node manager API" 06/113906/1
authorSeungbae Shin <seungbae.shin@samsung.com>
Thu, 9 Feb 2017 08:09:40 +0000 (17:09 +0900)
committerSeungbae Shin <seungbae.shin@samsung.com>
Thu, 9 Feb 2017 08:12:12 +0000 (17:12 +0900)
This reverts commit 62a60357654166395a57f41a764f22fc59ac552e.

Conflicts:
src/map-file
src/pulse/ext-node-manager.c

Change-Id: I81f365430c1679ea3d55503d63532eae38650116

src/Makefile.am
src/map-file
src/pulse/context.c
src/pulse/ext-node-manager.c [deleted file]
src/pulse/ext-node-manager.h [deleted file]
src/pulse/internal.h

index ac6a211..78a4f26 100644 (file)
@@ -929,7 +929,6 @@ pulseinclude_HEADERS = \
                pulse/ext-device-restore.h \
                pulse/ext-stream-restore.h \
                pulse/ext-echo-cancel.h \
-               pulse/ext-node-manager.h \
                pulse/format.h \
                pulse/gccmacro.h \
                pulse/introspect.h \
@@ -977,7 +976,6 @@ libpulse_la_SOURCES = \
                pulse/ext-device-restore.c pulse/ext-device-restore.h \
                pulse/ext-stream-restore.c pulse/ext-stream-restore.h \
                pulse/ext-echo-cancel.c pulse/ext-echo-cancel.h \
-               pulse/ext-node-manager.c pulse/ext-node-manager.h \
                pulse/format.c pulse/format.h \
                pulse/gccmacro.h \
                pulse/internal.h \
index f700e65..99dc287 100644 (file)
@@ -179,58 +179,8 @@ pa_ext_stream_restore_test;
 pa_ext_stream_restore_write;
 pa_ext_echo_cancel_set_volume;
 pa_ext_echo_cancel_set_device;
-pa_ext_node_manager_test;
-pa_ext_node_manager_read_nodes;
-pa_ext_node_manager_connect_nodes;
-pa_ext_node_manager_disconnect_nodes;
-pa_ext_node_manager_subscribe;
-pa_ext_node_manager_set_subscribe_cb;
 pa_ext_echo_cancel_set_volume;
 pa_ext_echo_cancel_set_device;
-pa_ext_volume_api_balance_valid;
-pa_ext_volume_api_bvolume_balance_to_string;
-pa_ext_volume_api_bvolume_copy_balance;
-pa_ext_volume_api_bvolume_get_left_right_balance;
-pa_ext_volume_api_bvolume_get_rear_front_balance;
-pa_ext_volume_api_bvolume_equal;
-pa_ext_volume_api_bvolume_from_cvolume;
-pa_ext_volume_api_bvolume_init;
-pa_ext_volume_api_bvolume_init_invalid;
-pa_ext_volume_api_bvolume_init_mono;
-pa_ext_volume_api_bvolume_parse_balance;
-pa_ext_volume_api_bvolume_remap;
-pa_ext_volume_api_bvolume_reset_balance;
-pa_ext_volume_api_bvolume_set_left_right_balance;
-pa_ext_volume_api_bvolume_set_rear_front_balance;
-pa_ext_volume_api_bvolume_snprint_balance;
-pa_ext_volume_api_bvolume_to_cvolume;
-pa_ext_volume_api_bvolume_valid;
-pa_ext_volume_api_connect;
-pa_ext_volume_api_disconnect;
-pa_ext_volume_api_get_audio_group_info_by_index;
-pa_ext_volume_api_get_audio_group_info_by_name;
-pa_ext_volume_api_get_audio_group_info_list;
-pa_ext_volume_api_get_device_info_by_index;
-pa_ext_volume_api_get_device_info_by_name;
-pa_ext_volume_api_get_device_info_list;
-pa_ext_volume_api_get_mute_control_info_by_index;
-pa_ext_volume_api_get_mute_control_info_by_name;
-pa_ext_volume_api_get_mute_control_info_list;
-pa_ext_volume_api_get_state;
-pa_ext_volume_api_get_volume_control_info_by_index;
-pa_ext_volume_api_get_volume_control_info_by_name;
-pa_ext_volume_api_get_volume_control_info_list;
-pa_ext_volume_api_get_server_info;
-pa_ext_volume_api_get_stream_info_by_index;
-pa_ext_volume_api_get_stream_info_by_name;
-pa_ext_volume_api_get_stream_info_list;
-pa_ext_volume_api_set_mute_control_mute_by_index;
-pa_ext_volume_api_set_mute_control_mute_by_name;
-pa_ext_volume_api_set_state_callback;
-pa_ext_volume_api_set_subscribe_callback;
-pa_ext_volume_api_set_volume_control_volume_by_index;
-pa_ext_volume_api_set_volume_control_volume_by_name;
-pa_ext_volume_api_subscribe;
 pa_format_info_copy;
 pa_format_info_free;
 pa_format_info_from_string;
index 50a2345..85641ad 100644 (file)
@@ -122,9 +122,6 @@ static void reset_callbacks(pa_context *c) {
 
     c->ext_stream_restore.callback = NULL;
     c->ext_stream_restore.userdata = NULL;
-
-    c->ext_node_manager.callback = NULL;
-    c->ext_node_manager.userdata = NULL;
 }
 
 pa_context *pa_context_new_with_proplist(pa_mainloop_api *mainloop, const char *name, pa_proplist *p) {
@@ -1386,8 +1383,6 @@ void pa_command_extension(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_t
         pa_ext_device_restore_command(c, tag, t);
     else if (pa_streq(name, "module-stream-restore"))
         pa_ext_stream_restore_command(c, tag, t);
-    else if (pa_streq(name, "module-node-manager"))
-        pa_ext_node_manager_command(c, tag, t);
     else
         pa_log(_("Received message for unknown extension '%s'"), name);
 
diff --git a/src/pulse/ext-node-manager.c b/src/pulse/ext-node-manager.c
deleted file mode 100644 (file)
index ca8aff1..0000000
+++ /dev/null
@@ -1,348 +0,0 @@
-/***
-  This file is part of PulseAudio.
-
-  Copyright 2012 Jaska Uimonen
-  Copyright 2012 Janos Kovacs
-
-  PulseAudio is free software; you can redistribute it and/or modify
-  it under the terms of the GNU Lesser General Public License as published
-  by the Free Software Foundation; either version 2.1 of the License,
-  or (at your option) any later version.
-
-  PulseAudio is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public License
-  along with PulseAudio; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-  USA.
-***/
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <pulse/context.h>
-#include <pulse/xmalloc.h>
-#include <pulse/fork-detect.h>
-#include <pulse/operation.h>
-
-#include <pulsecore/macro.h>
-#include <pulsecore/pstream-util.h>
-
-#include "internal.h"
-#include "ext-node-manager.h"
-
-enum {
-    SUBCOMMAND_TEST,
-    SUBCOMMAND_READ,
-    SUBCOMMAND_CONNECT,
-    SUBCOMMAND_DISCONNECT,
-    SUBCOMMAND_SUBSCRIBE,
-    SUBCOMMAND_EVENT
-};
-
-static void ext_node_manager_test_cb(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
-    pa_operation *o = userdata;
-    uint32_t version = PA_INVALID_INDEX;
-
-    pa_assert(pd);
-    pa_assert(o);
-    pa_assert(PA_REFCNT_VALUE(o) >= 1);
-
-    if (!o->context)
-        goto finish;
-
-    if (command != PA_COMMAND_REPLY) {
-        if (pa_context_handle_error(o->context, command, t, FALSE) < 0)
-            goto finish;
-
-    } else if (pa_tagstruct_getu32(t, &version) < 0 ||
-               !pa_tagstruct_eof(t)) {
-
-        pa_context_fail(o->context, PA_ERR_PROTOCOL);
-        goto finish;
-    }
-
-    if (o->callback) {
-        pa_ext_node_manager_test_cb_t cb = (pa_ext_node_manager_test_cb_t) o->callback;
-        cb(o->context, version, o->userdata);
-    }
-
-finish:
-    pa_operation_done(o);
-    pa_operation_unref(o);
-}
-
-pa_operation *pa_ext_node_manager_test(
-        pa_context *c,
-        pa_ext_node_manager_test_cb_t cb,
-        void *userdata) {
-
-    uint32_t tag;
-    pa_operation *o;
-    pa_tagstruct *t;
-
-    pa_assert(c);
-    pa_assert(PA_REFCNT_VALUE(c) >= 1);
-
-    PA_CHECK_VALIDITY_RETURN_NULL(c, !pa_detect_fork(), PA_ERR_FORKED);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 14, PA_ERR_NOTSUPPORTED);
-
-    o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
-
-    t = pa_tagstruct_command(c, PA_COMMAND_EXTENSION, &tag);
-    pa_tagstruct_putu32(t, PA_INVALID_INDEX);
-    pa_tagstruct_puts(t, "module-murphy-ivi");
-    pa_tagstruct_putu32(t, SUBCOMMAND_TEST);
-    pa_pstream_send_tagstruct(c->pstream, t);
-    pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, ext_node_manager_test_cb, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
-
-    return o;
-}
-
-static void ext_node_manager_read_cb(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
-    pa_operation *o = userdata;
-    pa_ext_node_manager_info i;
-
-    pa_assert(pd);
-    pa_assert(o);
-    pa_assert(PA_REFCNT_VALUE(o) >= 1);
-
-    if (!o->context)
-        goto finish;
-
-    if (command != PA_COMMAND_REPLY) {
-        if (pa_context_handle_error(o->context, command, t, FALSE) < 0)
-            goto finish;
-    } else {
-
-        while (!pa_tagstruct_eof(t)) {
-
-            memset(&i, 0, sizeof(i));
-
-            i.props = pa_proplist_new();
-
-            if (pa_tagstruct_gets(t, &i.name) < 0 ||
-                pa_tagstruct_get_proplist(t, i.props) < 0) {
-
-                pa_context_fail(o->context, PA_ERR_PROTOCOL);
-                goto finish;
-            }
-
-            if (o->callback) {
-                pa_ext_node_manager_read_cb_t cb = (pa_ext_node_manager_read_cb_t) o->callback;
-                cb(o->context, &i, 0, o->userdata);
-            }
-
-            pa_proplist_free(i.props);
-        }
-
-        /* let's send end marker */
-        if (o->callback) {
-            pa_ext_node_manager_read_cb_t cb = (pa_ext_node_manager_read_cb_t) o->callback;
-            cb(o->context, &i, 1, o->userdata);
-        }
-    }
-
-finish:
-    pa_operation_done(o);
-    pa_operation_unref(o);
-}
-
-pa_operation *pa_ext_node_manager_read_nodes(
-        pa_context *c,
-        pa_ext_node_manager_read_cb_t cb,
-        void *userdata) {
-
-    uint32_t tag;
-    pa_operation *o;
-    pa_tagstruct *t;
-
-    pa_assert(c);
-    pa_assert(PA_REFCNT_VALUE(c) >= 1);
-
-    PA_CHECK_VALIDITY_RETURN_NULL(c, !pa_detect_fork(), PA_ERR_FORKED);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 14, PA_ERR_NOTSUPPORTED);
-
-    o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
-
-    t = pa_tagstruct_command(c, PA_COMMAND_EXTENSION, &tag);
-    pa_tagstruct_putu32(t, PA_INVALID_INDEX);
-    pa_tagstruct_puts(t, "module-murphy-ivi");
-    pa_tagstruct_putu32(t, SUBCOMMAND_READ);
-    pa_pstream_send_tagstruct(c->pstream, t);
-    pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, ext_node_manager_read_cb, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
-
-    return o;
-}
-
-static void ext_node_manager_connect_cb(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
-    pa_operation *o = userdata;
-    uint32_t connection = PA_INVALID_INDEX;
-
-    pa_assert(pd);
-    pa_assert(o);
-    pa_assert(PA_REFCNT_VALUE(o) >= 1);
-
-    if (!o->context)
-        goto finish;
-
-    if (command != PA_COMMAND_REPLY) {
-        if (pa_context_handle_error(o->context, command, t, FALSE) < 0)
-            goto finish;
-
-    } else if (pa_tagstruct_getu32(t, &connection) < 0 ||
-               !pa_tagstruct_eof(t)) {
-
-        pa_context_fail(o->context, PA_ERR_PROTOCOL);
-        goto finish;
-    }
-
-    if (o->callback) {
-        pa_ext_node_manager_connect_cb_t cb = (pa_ext_node_manager_connect_cb_t) o->callback;
-        cb(o->context, connection, o->userdata);
-    }
-
-finish:
-    pa_operation_done(o);
-    pa_operation_unref(o);
-}
-
-pa_operation *pa_ext_node_manager_connect_nodes(
-        pa_context *c,
-        uint32_t source_node_id,
-        uint32_t sink_node_id,
-        pa_ext_node_manager_connect_cb_t cb,
-        void *userdata) {
-
-    uint32_t tag;
-    pa_operation *o = NULL;
-    pa_tagstruct *t = NULL;
-
-    pa_assert(c);
-    pa_assert(PA_REFCNT_VALUE(c) >= 1);
-
-    PA_CHECK_VALIDITY_RETURN_NULL(c, !pa_detect_fork(), PA_ERR_FORKED);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 14, PA_ERR_NOTSUPPORTED);
-
-    o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
-
-    t = pa_tagstruct_command(c, PA_COMMAND_EXTENSION, &tag);
-    pa_tagstruct_putu32(t, PA_INVALID_INDEX);
-    pa_tagstruct_puts(t, "module-murphy-ivi");
-    pa_tagstruct_putu32(t, SUBCOMMAND_CONNECT);
-
-    pa_tagstruct_putu32(t, source_node_id);
-    pa_tagstruct_putu32(t, sink_node_id);
-
-    pa_pstream_send_tagstruct(c->pstream, t);
-    pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, ext_node_manager_connect_cb, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
-
-    return o;
-}
-
-pa_operation *pa_ext_node_manager_disconnect_nodes(
-        pa_context *c,
-        uint32_t conn_id,
-        pa_context_success_cb_t cb,
-        void *userdata) {
-
-    uint32_t tag;
-    pa_operation *o = NULL;
-    pa_tagstruct *t = NULL;
-
-    pa_assert(c);
-    pa_assert(PA_REFCNT_VALUE(c) >= 1);
-
-    PA_CHECK_VALIDITY_RETURN_NULL(c, !pa_detect_fork(), PA_ERR_FORKED);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 14, PA_ERR_NOTSUPPORTED);
-
-    o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
-
-    t = pa_tagstruct_command(c, PA_COMMAND_EXTENSION, &tag);
-    pa_tagstruct_putu32(t, PA_INVALID_INDEX);
-    pa_tagstruct_puts(t, "module-murphy-ivi");
-    pa_tagstruct_putu32(t, SUBCOMMAND_DISCONNECT);
-
-    pa_tagstruct_putu32(t, conn_id);
-
-    pa_pstream_send_tagstruct(c->pstream, t);
-    pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, pa_context_simple_ack_callback, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
-
-    return o;
-}
-
-pa_operation *pa_ext_node_manager_subscribe(
-        pa_context *c,
-        int enable,
-        pa_context_success_cb_t cb,
-        void *userdata) {
-
-    uint32_t tag;
-    pa_operation *o;
-    pa_tagstruct *t;
-
-    pa_assert(c);
-    pa_assert(PA_REFCNT_VALUE(c) >= 1);
-
-    PA_CHECK_VALIDITY_RETURN_NULL(c, !pa_detect_fork(), PA_ERR_FORKED);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
-    PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 14, PA_ERR_NOTSUPPORTED);
-
-    o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
-
-    t = pa_tagstruct_command(c, PA_COMMAND_EXTENSION, &tag);
-    pa_tagstruct_putu32(t, PA_INVALID_INDEX);
-    pa_tagstruct_puts(t, "module-murphy-ivi");
-    pa_tagstruct_putu32(t, SUBCOMMAND_SUBSCRIBE);
-    pa_tagstruct_put_boolean(t, enable);
-    pa_pstream_send_tagstruct(c->pstream, t);
-    pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, pa_context_simple_ack_callback, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
-
-    return o;
-}
-
-void pa_ext_node_manager_set_subscribe_cb(
-        pa_context *c,
-        pa_ext_node_manager_subscribe_cb_t cb,
-        void *userdata) {
-
-    pa_assert(c);
-    pa_assert(PA_REFCNT_VALUE(c) >= 1);
-
-    if (pa_detect_fork())
-        return;
-
-    c->ext_node_manager.callback = cb;
-    c->ext_node_manager.userdata = userdata;
-}
-
-void pa_ext_node_manager_command(pa_context *c, uint32_t tag, pa_tagstruct *t) {
-    uint32_t subcommand;
-
-    pa_assert(c);
-    pa_assert(PA_REFCNT_VALUE(c) >= 1);
-    pa_assert(t);
-
-    if (pa_tagstruct_getu32(t, &subcommand) < 0 ||
-        !pa_tagstruct_eof(t)) {
-
-        pa_context_fail(c, PA_ERR_PROTOCOL);
-        return;
-    }
-
-    if (subcommand != SUBCOMMAND_EVENT) {
-        pa_context_fail(c, PA_ERR_PROTOCOL);
-        return;
-    }
-
-    if (c->ext_node_manager.callback)
-        c->ext_node_manager.callback(c, c->ext_node_manager.userdata);
-}
diff --git a/src/pulse/ext-node-manager.h b/src/pulse/ext-node-manager.h
deleted file mode 100644 (file)
index 57b9f01..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-#ifndef foopulseextnodemanagerhfoo
-#define foopulseextnodemanagerhfoo
-
-/***
-  This file is part of PulseAudio.
-
-  Copyright 2012 Jaska Uimonen
-  Copyright 2012 Janos Kovacs
-
-  PulseAudio is free software; you can redistribute it and/or modify
-  it under the terms of the GNU Lesser General Public License as published
-  by the Free Software Foundation; either version 2.1 of the License,
-  or (at your option) any later version.
-
-  PulseAudio is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public License
-  along with PulseAudio; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-  USA.
-***/
-
-#include <pulse/cdecl.h>
-#include <pulse/context.h>
-#include <pulse/version.h>
-
-PA_C_DECL_BEGIN
-
-typedef struct pa_ext_node_manager_info {
-    const char *name;
-    pa_proplist *props;
-} pa_ext_node_manager_info;
-
-typedef void (*pa_ext_node_manager_test_cb_t)(
-        pa_context *c,
-        uint32_t version,
-        void *userdata);
-
-pa_operation *pa_ext_node_manager_test(
-        pa_context *c,
-        pa_ext_node_manager_test_cb_t cb,
-        void *userdata);
-
-typedef void (*pa_ext_node_manager_read_cb_t)(
-        pa_context *c,
-        const pa_ext_node_manager_info *info,
-        int eol,
-        void *userdata);
-
-pa_operation *pa_ext_node_manager_read_nodes(
-        pa_context *c,
-        pa_ext_node_manager_read_cb_t cb,
-        void *userdata);
-
-typedef void (*pa_ext_node_manager_connect_cb_t)(
-        pa_context *c,
-        uint32_t connection,
-        void *userdata);
-
-pa_operation *pa_ext_node_manager_connect_nodes(
-        pa_context *c,
-        uint32_t src,
-        uint32_t dst,
-        pa_ext_node_manager_connect_cb_t cb,
-        void *userdata);
-
-pa_operation *pa_ext_node_manager_disconnect_nodes(
-        pa_context *c,
-        uint32_t conn,
-        pa_context_success_cb_t cb,
-        void *userdata);
-
-pa_operation *pa_ext_node_manager_subscribe(
-        pa_context *c,
-        int enable,
-        pa_context_success_cb_t cb,
-        void *userdata);
-
-typedef void (*pa_ext_node_manager_subscribe_cb_t)(
-        pa_context *c,
-        void *userdata);
-
-void pa_ext_node_manager_set_subscribe_cb(
-        pa_context *c,
-        pa_ext_node_manager_subscribe_cb_t cb,
-        void *userdata);
-
-PA_C_DECL_END
-
-#endif
index 61095d0..c5084d5 100644 (file)
@@ -31,7 +31,6 @@
 #include <pulse/ext-device-manager.h>
 #include <pulse/ext-device-restore.h>
 #include <pulse/ext-stream-restore.h>
-#include <pulse/ext-node-manager.h>
 
 #include <pulsecore/socket-client.h>
 #include <pulsecore/pstream.h>
@@ -116,10 +115,6 @@ struct pa_context {
         pa_ext_stream_restore_subscribe_cb_t callback;
         void *userdata;
     } ext_stream_restore;
-    struct {
-        pa_ext_node_manager_subscribe_cb_t callback;
-        void *userdata;
-    } ext_node_manager;
 };
 
 #define PA_MAX_WRITE_INDEX_CORRECTIONS 32
@@ -308,7 +303,6 @@ pa_tagstruct *pa_tagstruct_command(pa_context *c, uint32_t command, uint32_t *ta
 void pa_ext_device_manager_command(pa_context *c, uint32_t tag, pa_tagstruct *t);
 void pa_ext_device_restore_command(pa_context *c, uint32_t tag, pa_tagstruct *t);
 void pa_ext_stream_restore_command(pa_context *c, uint32_t tag, pa_tagstruct *t);
-void pa_ext_node_manager_command(pa_context *c, uint32_t tag, pa_tagstruct *t);
 
 bool pa_mainloop_is_our_api(pa_mainloop_api*m);