summaryrefslogtreecommitdiff
path: root/include/sway/ipc-json.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2018-03-29 23:19:14 -0400
committerGitHub <[email protected]>2018-03-29 23:19:14 -0400
commit6b7841b11ff4cd35f54d69dc92029855893e5ce0 (patch)
tree88c2de0d08e00b2a30cb20cdfadfa6e53f5c59b4 /include/sway/ipc-json.h
parent3d29d833b133d48abfa87c1a79d8fbb507fd1426 (diff)
parent2778edef976a669dd0019ebb5327bcfeb4de13c5 (diff)
Merge pull request #1647 from acrisci/refactor-tree
Refactor tree
Diffstat (limited to 'include/sway/ipc-json.h')
-rw-r--r--include/sway/ipc-json.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/ipc-json.h b/include/sway/ipc-json.h
index eef5a018..3d2fdc4f 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/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(swayc_t *c);
-json_object *ipc_json_describe_container_recursive(swayc_t *c);
+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);
#endif