blob: c83c76f79060c6d87e93162fb371f2d44471a329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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);
void astal_wp_endpoint_update_default(AstalWpEndpoint *self, gboolean is_default);
G_END_DECLS
#endif // !ASTAL_WP_ENDPOINT_PRIV_H
|