2010-07-22 01:15:18 +02:00
|
|
|
#ifndef IPC_H_
|
|
|
|
#define IPC_H_
|
|
|
|
|
|
|
|
#include <ev.h>
|
2010-07-23 04:43:43 +02:00
|
|
|
#include <stdint.h>
|
2010-07-22 01:15:18 +02:00
|
|
|
|
2010-07-23 04:43:43 +02:00
|
|
|
int init_connection(const char *socket_path);
|
|
|
|
int i3_send_msg(uint32_t type, const char* payload);
|
|
|
|
void subscribe_events();
|
2010-07-22 01:15:18 +02:00
|
|
|
|
|
|
|
#endif
|