sway/include/ipc-server.h

17 lines
382 B
C
Raw Normal View History

#ifndef _SWAY_IPC_SERVER_H
#define _SWAY_IPC_SERVER_H
#include "container.h"
2015-12-21 14:28:34 +00:00
#include "config.h"
#include "ipc.h"
void ipc_init(void);
void ipc_terminate(void);
struct sockaddr_un *ipc_user_sockaddr(void);
void ipc_event_workspace(swayc_t *old, swayc_t *new);
2015-12-21 14:28:34 +00:00
void ipc_event_barconfig_update(struct bar_config *bar);
2015-11-28 13:49:02 +00:00
const char *swayc_type_string(enum swayc_types type);
#endif