very basic IPC implementation

simply executes the received data as command
This commit is contained in:
minus 2015-08-16 20:24:18 +02:00
parent 579fe70ed9
commit 8981b48cd2
3 changed files with 79 additions and 0 deletions

6
include/ipc.h Normal file
View file

@ -0,0 +1,6 @@
#ifndef _SWAY_IPC_H
#define _SWAY_IPC_H
void init_ipc(void);
#endif