diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-04-12 20:19:54 -0400 | 
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2018-04-12 20:19:54 -0400 | 
| commit | cd1b32453a9296c18b28bff71607aeb22987b5cd (patch) | |
| tree | c653c6d525b471914c01a9d7ae543f521b6138ed /include/sway/ipc-json.h | |
| parent | 8e06985cc1b479724446fba752e0fecfb998e87b (diff) | |
| parent | 5785170421dc38437acde8bb61068cd16fda716c (diff) | |
| download | sway-cd1b32453a9296c18b28bff71607aeb22987b5cd.tar.xz | |
Merge branch 'wlroots'
Diffstat (limited to 'include/sway/ipc-json.h')
| -rw-r--r-- | include/sway/ipc-json.h | 13 | 
1 files changed, 6 insertions, 7 deletions
| diff --git a/include/sway/ipc-json.h b/include/sway/ipc-json.h index 3a5af0f5..7d87d377 100644 --- a/include/sway/ipc-json.h +++ b/include/sway/ipc-json.h @@ -1,15 +1,14 @@  #ifndef _SWAY_IPC_JSON_H  #define _SWAY_IPC_JSON_H -  #include <json-c/json.h> -#include "config.h" -#include "container.h" +#include "sway/tree/container.h" +#include "sway/input/input-manager.h"  json_object *ipc_json_get_version(); + +json_object *ipc_json_describe_container(struct sway_container *c); +json_object *ipc_json_describe_container_recursive(struct sway_container *c); +json_object *ipc_json_describe_input(struct sway_input_device *device);  json_object *ipc_json_describe_bar_config(struct bar_config *bar); -json_object *ipc_json_describe_container(swayc_t *c); -json_object *ipc_json_describe_container_recursive(swayc_t *c); -json_object *ipc_json_describe_window(swayc_t *c); -json_object *ipc_json_describe_input(struct libinput_device *device);  #endif | 
