aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/ipc-json.h
blob: 19c5b5bc67aadd3d5aa4c4da77238eac34478587 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _SWAY_IPC_JSON_H
#define _SWAY_IPC_JSON_H
#include <json-c/json.h>
#include "sway/container.h"
#include "sway/input/input-manager.h"

json_object *ipc_json_get_version();

json_object *ipc_json_describe_container(swayc_t *c);
json_object *ipc_json_describe_container_recursive(swayc_t *c);
json_object *ipc_json_describe_input(struct sway_input_device *device);
json_object *ipc_json_describe_bar_config(struct bar_config *bar);

#endif