blob: 9986c399f7760791f45296ba3cc23f3253bf9b53 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _SWAY_IPC_JSON_H
#define _SWAY_IPC_JSON_H
#include <json-c/json.h>
#include "sway/container.h"
json_object *ipc_json_get_version();
json_object *ipc_json_describe_container_recursive(swayc_t *c);
#endif
|