mirror of
https://github.com/zoriya/astal.git
synced 2026-06-08 12:10:31 +00:00
monorepo structuring
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#ifndef ASTAL_WP_DEVICE_PRIVATE_H
|
||||
#define ASTAL_WP_DEVICE_PRIVATE_H
|
||||
|
||||
#include <glib-object.h>
|
||||
#include <wp/wp.h>
|
||||
|
||||
#include "device.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
AstalWpDevice *astal_wp_device_create(WpDevice *device);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif // !ASTAL_WP_DEVICE_PRIATE_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
|
||||
Reference in New Issue
Block a user