summaryrefslogtreecommitdiffstats
path: root/include/ipc-json.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-07-04 16:03:23 -0400
committerLibravatar GitHub <noreply@github.com>2016-07-04 16:03:23 -0400
commit33c923be731c0bb1c399bf3bd1011aa969e591d8 (patch)
tree93c374e26425460bfa7ad1bc1528a1b9b5725a8e /include/ipc-json.h
parentMerge pull request #734 from jplatte/patch-1 (diff)
parentMerge branch 'master' into get-tree-command (diff)
downloadsway-33c923be731c0bb1c399bf3bd1011aa969e591d8.tar.gz
sway-33c923be731c0bb1c399bf3bd1011aa969e591d8.tar.zst
sway-33c923be731c0bb1c399bf3bd1011aa969e591d8.zip
Merge pull request #735 from zandrmartin/get-tree-command
implement `get_tree` command
Diffstat (limited to 'include/ipc-json.h')
-rw-r--r--include/ipc-json.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/ipc-json.h b/include/ipc-json.h
new file mode 100644
index 00000000..f90d801e
--- /dev/null
+++ b/include/ipc-json.h
@@ -0,0 +1,13 @@
1#ifndef _SWAY_IPC_JSON_H
2#define _SWAY_IPC_JSON_H
3
4#include <json-c/json.h>
5#include "config.h"
6#include "container.h"
7
8json_object *ipc_json_get_version();
9json_object *ipc_json_describe_bar_config(struct bar_config *bar);
10json_object *ipc_json_describe_container(swayc_t *c);
11json_object *ipc_json_describe_container_recursive(swayc_t *c);
12
13#endif