summaryrefslogtreecommitdiff
path: root/include/astal/wireplumber/profile.h
diff options
context:
space:
mode:
authorkotontrion <[email protected]>2024-07-20 15:53:07 +0200
committerkotontrion <[email protected]>2024-07-20 15:53:07 +0200
commitaf2ae01f168d3eb1f622de0112c959e1390883e0 (patch)
tree4629758737435217bf4725ecbf647ce9125bddb5 /include/astal/wireplumber/profile.h
parent86bff65898178fe6e58e8d02c9b6e588003621bc (diff)
add audio devices and profiles
Diffstat (limited to 'include/astal/wireplumber/profile.h')
-rw-r--r--include/astal/wireplumber/profile.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/astal/wireplumber/profile.h b/include/astal/wireplumber/profile.h
new file mode 100644
index 0000000..2ec768e
--- /dev/null
+++ b/include/astal/wireplumber/profile.h
@@ -0,0 +1,17 @@
+#ifndef ASTAL_WP_PROFILE_H
+#define ASTAL_WP_PROFILE_H
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define ASTAL_WP_TYPE_PROFILE (astal_wp_profile_get_type())
+
+G_DECLARE_FINAL_TYPE(AstalWpProfile, astal_wp_profile, ASTAL_WP, PROFILE, GObject)
+
+gint astal_wp_profile_get_index(AstalWpProfile *self);
+const gchar *astal_wp_profile_get_description(AstalWpProfile *self);
+
+G_END_DECLS
+
+#endif // !ASTAL_WP_PROFILE_H