mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
dc8c9fbeb6
This reverts commit472e81f35d
, reversing changes made to6b7841b11f
.
13 lines
411 B
C
13 lines
411 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_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);
|
|
|
|
#endif
|