Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/core/communication.h

21 lines
336 B
C
Raw Normal View History

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>
#include <errno.h> // error numbers
#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"
#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
2016-05-26 18:27:59 +02:00
#endif