From eacac669d0f1b12fde9119fd4a53fba29552eb70 Mon Sep 17 00:00:00 2001 From: Aylur Date: Sun, 1 Sep 2024 03:18:26 +0200 Subject: move to monorepo --- wireplumber/include/private/device-private.h | 15 +++++++++++++++ wireplumber/include/private/endpoint-private.h | 22 ++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 wireplumber/include/private/device-private.h create mode 100644 wireplumber/include/private/endpoint-private.h (limited to 'wireplumber/include/private') diff --git a/wireplumber/include/private/device-private.h b/wireplumber/include/private/device-private.h new file mode 100644 index 0000000..e98a7f7 --- /dev/null +++ b/wireplumber/include/private/device-private.h @@ -0,0 +1,15 @@ +#ifndef ASTAL_WP_DEVICE_PRIVATE_H +#define ASTAL_WP_DEVICE_PRIVATE_H + +#include +#include + +#include "device.h" + +G_BEGIN_DECLS + +AstalWpDevice *astal_wp_device_create(WpDevice *device); + +G_END_DECLS + +#endif // !ASTAL_WP_DEVICE_PRIATE_H diff --git a/wireplumber/include/private/endpoint-private.h b/wireplumber/include/private/endpoint-private.h new file mode 100644 index 0000000..7431c78 --- /dev/null +++ b/wireplumber/include/private/endpoint-private.h @@ -0,0 +1,22 @@ +#ifndef ASTAL_WP_ENDPOINT_PRIV_H +#define ASTAL_WP_ENDPOINT_PRIV_H + +#include +#include + +#include "endpoint.h" +#include "wp.h" + +G_BEGIN_DECLS + +AstalWpEndpoint *astal_wp_endpoint_create(WpNode *node, WpPlugin *mixer, WpPlugin *defaults, + AstalWpWp *wp); +AstalWpEndpoint *astal_wp_endpoint_init_as_default(AstalWpEndpoint *self, WpPlugin *mixer, + WpPlugin *defaults, AstalWpMediaClass type, + AstalWpWp *wp); +void astal_wp_endpoint_update_default(AstalWpEndpoint *self, gboolean is_default); +void astal_wp_endpoint_update_volume(AstalWpEndpoint *self); + +G_END_DECLS + +#endif // !ASTAL_WP_ENDPOINT_PRIV_H -- cgit v1.2.3