This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-10-03 21:52:11 +02:00
|
|
|
#ifndef __IPC_COMMUNICATION_H__
|
|
|
|
#define __IPC_COMMUNICATION_H__
|
2016-05-26 18:27:59 +02:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2016-05-27 17:00:02 +02:00
|
|
|
#include <errno.h> // error numbers
|
|
|
|
|
2018-11-04 09:50:17 +01:00
|
|
|
|
|
|
|
#include "ipc.h"
|
2018-10-04 01:22:50 +02:00
|
|
|
#include "client.h"
|
2018-10-28 17:09:35 +01:00
|
|
|
#include "event.h"
|
2018-11-04 09:50:17 +01:00
|
|
|
#include "message.h"
|
2016-05-26 18:27:59 +02:00
|
|
|
|
2018-10-08 15:18:56 +02:00
|
|
|
#define IPC_WITH_UNIX_SOCKETS
|
|
|
|
#ifdef IPC_WITH_UNIX_SOCKETS
|
|
|
|
#include "usocket.h"
|
|
|
|
#endif
|
2018-10-28 18:12:17 +01:00
|
|
|
|
2016-05-26 18:27:59 +02:00
|
|
|
#endif
|