mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 14:04:11 +01:00
17 lines
610 B
C
17 lines
610 B
C
#ifndef _SWAY_IPC_JSON_H
|
|
#define _SWAY_IPC_JSON_H
|
|
#include <json-c/json.h>
|
|
#include "sway/tree/container.h"
|
|
#include "sway/input/input-manager.h"
|
|
|
|
json_object *ipc_json_get_version();
|
|
|
|
json_object *ipc_json_describe_disabled_output(struct sway_output *o);
|
|
json_object *ipc_json_describe_container(struct sway_container *c);
|
|
json_object *ipc_json_describe_container_recursive(struct sway_container *c);
|
|
json_object *ipc_json_describe_input(struct sway_input_device *device);
|
|
json_object *ipc_json_describe_seat(struct sway_seat *seat);
|
|
json_object *ipc_json_describe_bar_config(struct bar_config *bar);
|
|
|
|
#endif
|