mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
SPDX tags make the licensing information easy to understand and clear, and they are machine parseable. See https://spdx.dev for more information.
16 lines
460 B
C
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
|