wireplumber/lib/wpipc/wpipc.h
Julian Bouzas 795df4b693 lib: add wpipc library
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.
2021-05-04 18:55:10 -04:00

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