/* WirePlumber * * Copyright © 2020 Collabora Ltd. * @author Julian Bouzas * * SPDX-License-Identifier: MIT */ #ifndef __WIREPLUMBER_RESERVE_DEVICE_H__ #define __WIREPLUMBER_RESERVE_DEVICE_H__ #include #include "dbus-device-reservation.h" G_BEGIN_DECLS #define WP_TYPE_RESERVE_DEVICE (wp_reserve_device_get_type ()) G_DECLARE_FINAL_TYPE (WpReserveDevice, wp_reserve_device, WP, RESERVE_DEVICE, GObject) WpReserveDevice * wp_reserve_device_new (WpCore *core, WpDbusDeviceReservation *reservation, GClosure *manager_closure); G_END_DECLS #endif