wlroots-hyprland/include/backend/session/direct-ipc.h

13 lines
329 B
C
Raw Normal View History

#ifndef BACKEND_SESSION_DIRECT_IPC_H
#define BACKEND_SESSION_DIRECT_IPC_H
2017-07-09 12:12:50 +02:00
#include <sys/types.h>
int direct_ipc_open(int sock, const char *path);
2017-07-09 12:23:54 +02:00
void direct_ipc_setmaster(int sock, int fd);
void direct_ipc_dropmaster(int sock, int fd);
2017-07-09 12:12:50 +02:00
void direct_ipc_finish(int sock, pid_t pid);
int direct_ipc_init(pid_t *pid_out);
2017-07-09 12:12:50 +02:00
#endif