7d7867acce
I.e. move the xcb-event-handling into xcb.c and the child-process-communications into newly created child.c. Also change some includes.
11 lines
184 B
C
11 lines
184 B
C
#ifndef IPC_H_
|
|
#define IPC_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
int init_connection(const char *socket_path);
|
|
int i3_send_msg(uint32_t type, const char* payload);
|
|
void subscribe_events();
|
|
|
|
#endif
|