From 6f199dc746bd377223e9bec60467c9060d1048ff Mon Sep 17 00:00:00 2001 From: Phil Jones Date: Sun, 31 Oct 2021 22:16:40 +0000 Subject: Add actual greetd functionality. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Useable, but very barebones — not even any error message reporting. --- src/ipc.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/ipc.h (limited to 'src/ipc.h') diff --git a/src/ipc.h b/src/ipc.h new file mode 100644 index 0000000..30a953a --- /dev/null +++ b/src/ipc.h @@ -0,0 +1,13 @@ +#ifndef IPC_H +#define IPC_H + +#include + +/* + * 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 */ -- cgit v1.2.3