mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-20 20:30:03 +01:00
48 lines
919 B
C
48 lines
919 B
C
|
|
/* WirePlumber
|
||
|
|
*
|
||
|
|
* Copyright © 2020 Collabora Ltd.
|
||
|
|
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __WIREPLUMBER_GLOBAL_PROXY_H__
|
||
|
|
#define __WIREPLUMBER_GLOBAL_PROXY_H__
|
||
|
|
|
||
|
|
#include "proxy.h"
|
||
|
|
#include "properties.h"
|
||
|
|
|
||
|
|
G_BEGIN_DECLS
|
||
|
|
|
||
|
|
/**
|
||
|
|
* WP_TYPE_GLOBAL_PROXY:
|
||
|
|
*
|
||
|
|
* The #WpGlobalProxy #GType
|
||
|
|
*/
|
||
|
|
#define WP_TYPE_GLOBAL_PROXY (wp_global_proxy_get_type ())
|
||
|
|
WP_API
|
||
|
|
G_DECLARE_DERIVABLE_TYPE (WpGlobalProxy, wp_global_proxy,
|
||
|
|
WP, GLOBAL_PROXY, WpObject)
|
||
|
|
|
||
|
|
struct _WpGlobalProxyClass
|
||
|
|
{
|
||
|
|
WpProxyClass parent_class;
|
||
|
|
};
|
||
|
|
|
||
|
|
WP_API
|
||
|
|
void wp_global_proxy_request_destroy (WpGlobalProxy * self);
|
||
|
|
|
||
|
|
WP_API
|
||
|
|
guint32 wp_global_proxy_get_permissions (WpGlobalProxy * self);
|
||
|
|
|
||
|
|
WP_API
|
||
|
|
WpProperties * wp_global_proxy_get_global_properties (
|
||
|
|
WpGlobalProxy * self);
|
||
|
|
|
||
|
|
WP_API
|
||
|
|
gboolean wp_global_proxy_bind (WpGlobalProxy * self);
|
||
|
|
|
||
|
|
G_END_DECLS
|
||
|
|
|
||
|
|
#endif
|