diff options
author | Aylur <[email protected]> | 2024-09-01 14:17:36 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-01 14:17:36 +0200 |
commit | 3e3f045d650a839d21f7b649da7aa5c19bd2e38b (patch) | |
tree | 9a974eb0d38932d474940288c662bd1f01ea3088 /lib/wireplumber/include/private/endpoint-private.h | |
parent | 408faee16911ccfaa3e7dad69f9938fd4a696704 (diff) |
monorepo structuring
Diffstat (limited to 'lib/wireplumber/include/private/endpoint-private.h')
-rw-r--r-- | lib/wireplumber/include/private/endpoint-private.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/wireplumber/include/private/endpoint-private.h b/lib/wireplumber/include/private/endpoint-private.h new file mode 100644 index 0000000..7431c78 --- /dev/null +++ b/lib/wireplumber/include/private/endpoint-private.h @@ -0,0 +1,22 @@ +#ifndef ASTAL_WP_ENDPOINT_PRIV_H +#define ASTAL_WP_ENDPOINT_PRIV_H + +#include <glib-object.h> +#include <wp/wp.h> + +#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 |