pipewire/spa/plugins/bluez5/upower.h
Barnabás Pőcze 934ab3036e treewide: use SPDX tags to specify copyright information
SPDX tags make the licensing information easy to understand and clear,
and they are machine parseable.

See https://spdx.dev for more information.
2023-02-16 10:54:48 +00:00

16 lines
460 B
C

/* Spa Bluez5 UPower proxy */
/* SPDX-FileCopyrightText: Copyright © 2022 Collabora */
/* SPDX-License-Identifier: MIT */
#ifndef SPA_BLUEZ5_UPOWER_H_
#define SPA_BLUEZ5_UPOWER_H_
#include "defs.h"
void *upower_register(struct spa_log *log,
void *dbus_connection,
void (*set_battery_level)(unsigned int level, void *user_data),
void *user_data);
void upower_unregister(void *data);
#endif