1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-29 08:34:13 +01:00
sway-patched-tray-menu/include/sway/ipc-json.h

14 lines
411 B
C
Raw Normal View History

2017-11-22 21:37:07 -05:00
#ifndef _SWAY_IPC_JSON_H
#define _SWAY_IPC_JSON_H
#include <json-c/json.h>
#include "sway/tree/container.h"
2017-12-18 14:27:38 -05:00
#include "sway/input/input-manager.h"
2017-11-22 21:37:07 -05:00
json_object *ipc_json_get_version();
2018-03-29 14:31:10 -04:00
json_object *ipc_json_describe_container(struct sway_container *c);
json_object *ipc_json_describe_container_recursive(struct sway_container *c);
2017-12-18 14:27:38 -05:00
json_object *ipc_json_describe_input(struct sway_input_device *device);
2017-12-03 08:33:52 -05:00
2017-11-22 21:37:07 -05:00
#endif