blob: a56fee432c53ada5055781489e31cf703696c50e (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _SWAY_IPC_CLIENT_H
#define _SWAY_IPC_CLIENT_H
#include "ipc.h"
char *get_socketpath(void);
char *ipc_single_command(const char *socket_path, uint32_t type, const char *payload, uint32_t len);
#endif
|