/** * @file * @section AUTHORS * * Authors: * Eamon Walsh * * @section LICENSE * * This file is in the public domain. */ #ifndef _LINPICKER_LOCAL_H_ #define _LINPICKER_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 /* _LINPICKER_LOCAL_H_ */