mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-05-04 20:08:26 +02:00
29 lines
781 B
C
29 lines
781 B
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2019 Collabora Ltd.
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef __WIREPLUMBER_REMOTE_PIPEWIRE_H__
|
|
#define __WIREPLUMBER_REMOTE_PIPEWIRE_H__
|
|
|
|
#include "remote.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define WP_TYPE_REMOTE_PIPEWIRE (wp_remote_pipewire_get_type ())
|
|
G_DECLARE_FINAL_TYPE (WpRemotePipewire, wp_remote_pipewire,
|
|
WP, REMOTE_PIPEWIRE, WpRemote)
|
|
|
|
WpRemote *wp_remote_pipewire_new (WpCore *core, GMainContext *context);
|
|
|
|
gpointer wp_remote_pipewire_proxy_bind (WpRemotePipewire *self, guint global_id,
|
|
guint global_type);
|
|
gpointer wp_remote_pipewire_create_object (WpRemotePipewire *self,
|
|
const char *factory_name, guint global_type, gconstpointer props);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|