]> git.sur5r.net Git - i3/i3/blob - i3bar/include/ipc.h
We don't need a callback for null-values
[i3/i3] / i3bar / include / ipc.h
1 #ifndef IPC_H_
2 #define IPC_H_
3
4 #include <stdint.h>
5
6 int init_connection(const char *socket_path);
7 int i3_send_msg(uint32_t type, const char* payload);
8 void subscribe_events();
9
10 #endif