mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-25 00:50:04 +01:00
Simple library that uses sockets for inter-process communication. It provides an API to create server and client objects. Users can add custom handlers in the server, and clients can send requests for those custom handlers.
18 lines
305 B
C
18 lines
305 B
C
/* WirePlumber
|
|
*
|
|
* Copyright © 2021 Collabora Ltd.
|
|
* @author Julian Bouzas <julian.bouzas@collabora.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef __WPIPC_H__
|
|
#define __WPIPC_H__
|
|
|
|
#include "protocol.h"
|
|
#include "receiver.h"
|
|
#include "sender.h"
|
|
#include "server.h"
|
|
#include "client.h"
|
|
|
|
#endif
|