aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway
diff options
context:
space:
mode:
authorLibravatar Ian Fan <ianfan0@gmail.com>2018-07-18 11:37:50 +0100
committerLibravatar Ian Fan <ianfan0@gmail.com>2018-08-01 16:57:15 +0100
commit6865b8aae9736e73a2153bce89d979737f8162cc (patch)
treeefe6c37374413fab126f73396786c1e01db6b07d /include/sway
parentipc: add window::move events (diff)
downloadsway-6865b8aae9736e73a2153bce89d979737f8162cc.tar.gz
sway-6865b8aae9736e73a2153bce89d979737f8162cc.tar.zst
sway-6865b8aae9736e73a2153bce89d979737f8162cc.zip
ipc: add binding event
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/config.h2
-rw-r--r--include/sway/ipc-server.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 0f74b439..909b6827 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -488,8 +488,6 @@ int sway_binding_cmp_keys(const void *a, const void *b);
488 488
489void free_sway_binding(struct sway_binding *sb); 489void free_sway_binding(struct sway_binding *sb);
490 490
491struct sway_binding *sway_binding_dup(struct sway_binding *sb);
492
493void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding); 491void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding);
494 492
495void load_swaybars(); 493void load_swaybars();
diff --git a/include/sway/ipc-server.h b/include/sway/ipc-server.h
index a11735cf..4b6d0e25 100644
--- a/include/sway/ipc-server.h
+++ b/include/sway/ipc-server.h
@@ -17,5 +17,6 @@ void ipc_event_window(struct sway_container *window, const char *change);
17void ipc_event_barconfig_update(struct bar_config *bar); 17void ipc_event_barconfig_update(struct bar_config *bar);
18void ipc_event_mode(const char *mode, bool pango); 18void ipc_event_mode(const char *mode, bool pango);
19void ipc_event_shutdown(const char *reason); 19void ipc_event_shutdown(const char *reason);
20void ipc_event_binding(struct sway_binding *binding);
20 21
21#endif 22#endif