]> git.sur5r.net Git - i3/i3/blob - include/commands.h
fbad973b1c606d5a090a3c871023bc357fcac878
[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 bool focus_window_in_container(xcb_connection_t *conn, Container *container,
17                                direction_t direction);
18
19 /** Parses a command, see file CMDMODE for more information */
20 void parse_command(xcb_connection_t *conn, const char *command);
21
22 #endif