]> git.sur5r.net Git - i3/i3/blob - include/ipc.h
Initial implementation of IPC via UNIX domain sockets
[i3/i3] / include / ipc.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11
12 #ifndef _IPC_H
13 #define _IPC_H
14
15 #include <ev.h>
16
17 #include "i3/ipc.h"
18
19 void ipc_new_client(EV_P_ struct ev_io *w, int revents);
20
21 int ipc_create_socket(const char *filename);
22
23 #endif