diff options
author | minus <minus@mnus.de> | 2015-08-19 01:52:46 +0200 |
---|---|---|
committer | minus <minus@mnus.de> | 2015-08-20 15:24:33 +0200 |
commit | 91c08772645e2162015c3acf8a8ae7187502adb4 (patch) | |
tree | 542f9f0371f408fc72fbb4715ea0766770ab3fad /include/ipc.h | |
parent | bfbadadf702c6c7f078cc2e854afa02686b91c22 (diff) |
properly exit sway
- wlc_terminate() instead of exit(0)
- unlink IPC socket
Diffstat (limited to 'include/ipc.h')
-rw-r--r-- | include/ipc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ipc.h b/include/ipc.h index 25d2fc61..606c47ba 100644 --- a/include/ipc.h +++ b/include/ipc.h @@ -12,6 +12,7 @@ enum ipc_command_type { IPC_GET_VERSION = 7, }; -void init_ipc(void); +void ipc_init(void); +void ipc_shutdown(void); #endif |