37 lines
688 B
C
37 lines
688 B
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2019 Collabora Ltd.
|
|
* @author Julian Bouzas <julian.bouzas@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef __WIREPLUMBER_PROXY_H__
|
|
#define __WIREPLUMBER_PROXY_H__
|
|
|
|
#include <gio/gio.h>
|
|
|
|
#include "core.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define WP_TYPE_PROXY (wp_proxy_get_type ())
|
|
G_DECLARE_DERIVABLE_TYPE (WpProxy, wp_proxy, WP, PROXY, GObject)
|
|
|
|
/* The proxy base class */
|
|
struct _WpProxyClass
|
|
{
|
|
GObjectClass parent_class;
|
|
|
|
/* Signals */
|
|
void (*done)(WpProxy *wp_proxy, gpointer data);
|
|
};
|
|
|
|
guint wp_proxy_get_global_id (WpProxy * self);
|
|
gpointer wp_proxy_get_pw_proxy (WpProxy * self);
|
|
void wp_proxy_sync (WpProxy * self);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|