diff options
author | kotontrion <[email protected]> | 2024-07-20 15:53:07 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-07-20 15:53:07 +0200 |
commit | af2ae01f168d3eb1f622de0112c959e1390883e0 (patch) | |
tree | 4629758737435217bf4725ecbf647ce9125bddb5 /include/private/endpoint-private.h | |
parent | 86bff65898178fe6e58e8d02c9b6e588003621bc (diff) |
add audio devices and profiles
Diffstat (limited to 'include/private/endpoint-private.h')
-rw-r--r-- | include/private/endpoint-private.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/private/endpoint-private.h b/include/private/endpoint-private.h new file mode 100644 index 0000000..765f4b8 --- /dev/null +++ b/include/private/endpoint-private.h @@ -0,0 +1,18 @@ +#ifndef ASTAL_WP_ENDPOINT_PRIV_H +#define ASTAL_WP_ENDPOINT_PRIV_H + +#include <glib-object.h> +#include <wp/wp.h> + +#include "endpoint.h" + +G_BEGIN_DECLS + +AstalWpEndpoint *astal_wp_endpoint_create(WpNode *node, WpPlugin *mixer, WpPlugin *defaults); +AstalWpEndpoint *astal_wp_endpoint_init_as_default(AstalWpEndpoint *self, WpPlugin *mixer, + WpPlugin *defaults, AstalWpMediaClass type); +void astal_wp_endpoint_update_default(AstalWpEndpoint *self, gboolean is_default); + +G_END_DECLS + +#endif // !ASTAL_WP_ENDPOINT_PRIV_H |