]> git.sur5r.net Git - i3/i3/blob - include/commands.h
bugfix: really return focus list in IPC tree dump (instead of nodes list)
[i3/i3] / include / commands.h
1 /*
2  * vim:ts=8:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * (c) 2009 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #ifndef _COMMANDS_H
12 #define _COMMANDS_H
13
14 #include <xcb/xcb.h>
15
16 #if 0
17 bool focus_window_in_container(xcb_connection_t *conn, Container *container,
18                                direction_t direction);
19 #endif
20
21 /** Parses a command, see file CMDMODE for more information */
22 void parse_command(const char *command);
23
24 #endif