Subscribe to workspace change events and redraw

This commit is contained in:
Drew DeVault 2015-12-13 16:04:54 -05:00
parent 7918feb9cd
commit e277d4e094
3 changed files with 104 additions and 74 deletions

View file

@ -16,5 +16,10 @@ int ipc_open_socket(const char *socket_path);
* the length of the buffer returned from sway.
*/
char *ipc_single_command(int socketfd, uint32_t type, const char *payload, uint32_t *len);
/**
* Receives a single IPC resposne and returns the buffer. len will be updated
* with the length of the buffer returned from sway.
*/
char *ipc_recv_response(int socketfd, uint32_t *len);
#endif