1#ifndef IPC_H
2#define IPC_H
3
4enum cmd {
5 cmd_move,
6 cmd_move_absolute,
7 cmd_resize,
8 cmd_resize_absolute,
9 cmd_teleport,
10 cmd_center,
11 cmd_fullscreen,
12 cmd_hide,
13 cmd_show,
14 cmd_lower,
15 cmd_raise,
16 cmd_focus_prev,
17 cmd_focus_next,
18 cmd_close,
19 cmd_workspace,
20 cmd_move_workspace,
21 cmd_get_geometry,
22 cmd_get_pid,
23 cmd_get_title,
24 cmd_get_app_id,
25 cmd_get_focus,
26 cmd_get_workspace,
27 cmd_get_screen_geometry,
28 cmd_get_cursor_position,
29 cmd_list_windows,
30 cmd_bind,
31 cmd_unbind,
32 cmd_modkey,
33 cmd_inner_focus_color,
34 cmd_inner_unfocus_color,
35 cmd_outer_focus_color,
36 cmd_outer_unfocus_color,
37 cmd_inner_border_width,
38 cmd_outer_border_width,
39 cmd_title_format,
40 cmd_set_decor,
41 cmd_quit,
42 cmd_config,
43 cmd_last
44};
45
46#endif /* IPC_H */