diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-07-04 16:03:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-04 16:03:23 -0400 |
commit | 33c923be731c0bb1c399bf3bd1011aa969e591d8 (patch) | |
tree | 93c374e26425460bfa7ad1bc1528a1b9b5725a8e /include | |
parent | 33abcd9573155d36f8a40936d06a44704287a99b (diff) | |
parent | e07b8c8d7cfaaf6667a766c9d42d59fc14e98872 (diff) | |
download | sway-33c923be731c0bb1c399bf3bd1011aa969e591d8.tar.xz |
Merge pull request #735 from zandrmartin/get-tree-command
implement `get_tree` command
Diffstat (limited to 'include')
-rw-r--r-- | include/ipc-json.h | 13 |
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 @@ +#ifndef _SWAY_IPC_JSON_H +#define _SWAY_IPC_JSON_H + +#include <json-c/json.h> +#include "config.h" +#include "container.h" + +json_object *ipc_json_get_version(); +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); + +#endif |