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_unfocus,
19 cmd_close,
20 cmd_workspace,
21 cmd_move_workspace,
22 cmd_get_geometry,
23 cmd_get_pid,
24 cmd_get_title,
25 cmd_get_app_id,
26 cmd_get_focus,
27 cmd_get_workspace,
28 cmd_get_screen_geometry,
29 cmd_get_cursor_position,
30 cmd_list_windows,
31 cmd_bind,
32 cmd_unbind,
33 cmd_modkey,
34 cmd_inner_focus_color,
35 cmd_inner_unfocus_color,
36 cmd_outer_focus_color,
37 cmd_outer_unfocus_color,
38 cmd_inner_border_width,
39 cmd_outer_border_width,
40 cmd_title_format,
41 cmd_set_decor,
42 cmd_quit,
43 cmd_config,
44 cmd_last
45};
46
47#endif /* IPC_H */