ipc new window event

This commit is contained in:
Tony Crisci 2018-02-27 19:53:15 -05:00
parent 3c80498891
commit 02804584e5
3 changed files with 102 additions and 3 deletions

View file

@ -1,6 +1,7 @@
#ifndef _SWAY_IPC_SERVER_H
#define _SWAY_IPC_SERVER_H
#include <sys/socket.h>
#include "sway/container.h"
#include "ipc.h"
struct sway_server;
@ -9,4 +10,6 @@ void ipc_init(struct sway_server *server);
void ipc_terminate(void);
struct sockaddr_un *ipc_user_sockaddr(void);
void ipc_event_window(swayc_t *window, const char *change);
#endif