1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-23 07:27:17 +01:00
sway-patched-tray-menu/include/sway/ipc-json.h

15 lines
478 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();
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);
json_object *ipc_json_describe_bar_config(struct bar_config *bar);
2017-12-03 08:33:52 -05:00
2017-11-22 21:37:07 -05:00
#endif