summaryrefslogtreecommitdiff
path: root/src/ipc.h
blob: 30a953a8bd2e7a6c4a510fa8ff09e7600ba6b3c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef IPC_H
#define IPC_H

#include <json-c/json_object.h>

/*
 * Submit an IPC request to greetd.
 *
 * Returns the response on success, or NULL on failure.
 */
struct json_object *ipc_submit(struct json_object *request);

#endif /* IPC_H */