blob: c2e6dab5bc65922544b330c466d38a76a0983b65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _LOCAL_H_
#define _LOCAL_H_
/* The local socket address */
#define LINPICKER_SOCKNAME "\0linpicker_server"
/* 1-byte messages accepted over the socket */
#define LINPICKER_LOCAL_DUMP_VIEWS 0
int
local_init(int argc, char **argv);
#endif /* _LOCAL_H_ */
|