i3/i3bar/include/ipc.h
Axel Wagner 7d7867acce Be more strict with encapsulation
I.e. move the xcb-event-handling into xcb.c and the
child-process-communications into newly created child.c.
Also change some includes.
2010-08-05 05:09:59 +02:00

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