2023-02-08 18:12:00 +01:00
|
|
|
/* PipeWire */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2019 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2019-05-29 17:01:21 +02:00
|
|
|
|
|
|
|
|
#ifndef PIPEWIRE_CLIENT_DEVICE_H
|
|
|
|
|
#define PIPEWIRE_CLIENT_DEVICE_H
|
|
|
|
|
|
2019-12-11 10:57:10 +01:00
|
|
|
#include <pipewire/impl.h>
|
2019-05-29 17:01:21 +02:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-05-31 16:41:07 +02:00
|
|
|
#define CLIENT_DEVICE_USAGE "["PW_KEY_DEVICE_NAME"=<string>]"
|
|
|
|
|
|
2019-05-29 17:01:21 +02:00
|
|
|
struct pw_device *
|
|
|
|
|
pw_client_device_new(struct pw_resource *resource,
|
|
|
|
|
struct pw_properties *properties);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* PIPEWIRE_CLIENT_DEVICE_H */
|