File: ipc.h

package info (click to toggle)
kanshi 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 244 kB
  • sloc: ansic: 1,648; xml: 493; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 254 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef KANSHI_IPC_H
#define KANSHI_IPC_H

#include <stdbool.h>

#include "kanshi.h"

int kanshi_init_ipc(struct kanshi_state *state, int listen_fd);
void kanshi_finish_ipc(struct kanshi_state *state);

int get_ipc_path(char *path, size_t size);

#endif