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_MSG_H__
|
|
|
|
#define __IPC_MSG_H__
|
2016-12-21 01:26:47 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2018-11-02 21:03:54 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2018-11-04 09:50:17 +01:00
|
|
|
#include "ipc.h"
|
2018-10-03 22:02:37 +02:00
|
|
|
void ipc_message_print (const struct ipc_message *m);
|
2016-12-21 01:26:47 +01:00
|
|
|
|
|
|
|
#endif
|