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.
12 lines
333 B
C
12 lines
333 B
C
/* PipeWire */
|
|
/* SPDX-FileCopyrightText: Copyright © 2021 Pauli Virtanen */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef PULSE_SERVER_MESSAGE_HANDLER_H
|
|
#define PULSE_SERVER_MESSAGE_HANDLER_H
|
|
|
|
struct pw_manager_object;
|
|
|
|
void register_object_message_handlers(struct pw_manager_object *o);
|
|
|
|
#endif /* PULSE_SERVER_MESSAGE_HANDLER_H */
|