mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-05 13:30:02 -05:00
SPDX tags make the licensing information easy to understand and clear, and they are machine parseable. See https://spdx.dev for more information.
13 lines
344 B
C
13 lines
344 B
C
/* PipeWire */
|
|
/* SPDX-FileCopyrightText: Copyright © 2019 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef PULSE_SERVER_DBUS_NAME_H
|
|
#define PULSE_SERVER_DBUS_NAME_H
|
|
|
|
struct pw_context;
|
|
|
|
void *dbus_request_name(struct pw_context *context, const char *name);
|
|
void dbus_release_name(void *data);
|
|
|
|
#endif /* PULSE_SERVER_DBUS_NAME_H */
|