sway/include/sway/ipc-json.h

12 lines
268 B
C
Raw Normal View History

2017-11-23 02:37:07 +00:00
#ifndef _SWAY_IPC_JSON_H
#define _SWAY_IPC_JSON_H
#include <json-c/json.h>
2017-12-03 13:33:52 +00:00
#include "sway/container.h"
2017-11-23 02:37:07 +00:00
json_object *ipc_json_get_version();
2017-12-18 13:06:03 +00:00
json_object *ipc_json_describe_container(swayc_t *c);
2017-12-03 13:33:52 +00:00
json_object *ipc_json_describe_container_recursive(swayc_t *c);
2017-11-23 02:37:07 +00:00
#endif