
* add proxy sync method * add wrapers for enum/set/subscribe_params * move the info structure handling to the subclasses * expose info->props as WpProperties
28 lines
576 B
C
28 lines
576 B
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2019 Collabora Ltd.
|
|
* @author Julian Bouzas <julian.bouzas@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef __WIREPLUMBER_PROXY_LINK_H__
|
|
#define __WIREPLUMBER_PROXY_LINK_H__
|
|
|
|
#include "proxy.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
struct pw_link_info;
|
|
|
|
#define WP_TYPE_PROXY_LINK (wp_proxy_link_get_type ())
|
|
G_DECLARE_FINAL_TYPE (WpProxyLink, wp_proxy_link, WP, PROXY_LINK, WpProxy)
|
|
|
|
const struct pw_link_info * wp_proxy_link_get_info (WpProxyLink * self);
|
|
|
|
WpProperties * wp_proxy_link_get_properties (WpProxyLink * self);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|