diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-29 23:34:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 23:34:14 -0400 |
commit | 472e81f35d689d67cda241acafda91c688d61046 (patch) | |
tree | b8b52173a9791e3b13a0316ab9d316a80a6adc20 /include/sway/ipc-json.h | |
parent | 6b7841b11ff4cd35f54d69dc92029855893e5ce0 (diff) | |
parent | d0c7f66e950689b70196a890b62b82ff3c66e103 (diff) |
Merge pull request #1653 from swaywm/revert-1647-refactor-tree
Revert "Refactor tree"
Diffstat (limited to 'include/sway/ipc-json.h')
-rw-r--r-- | include/sway/ipc-json.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/ipc-json.h b/include/sway/ipc-json.h index 3d2fdc4f..eef5a018 100644 --- a/include/sway/ipc-json.h +++ b/include/sway/ipc-json.h @@ -1,13 +1,13 @@ #ifndef _SWAY_IPC_JSON_H #define _SWAY_IPC_JSON_H #include <json-c/json.h> -#include "sway/tree/container.h" +#include "sway/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_container(swayc_t *c); +json_object *ipc_json_describe_container_recursive(swayc_t *c); json_object *ipc_json_describe_input(struct sway_input_device *device); #endif |