From a003e926001e42f01c257028df4ee294c8d23639 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Mon, 3 Aug 2020 00:56:10 +0200 Subject: client: Prefix notification methods with 'send' --- include/client.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/client.h b/include/client.h index 5046690..fb7574b 100644 --- a/include/client.h +++ b/include/client.h @@ -31,8 +31,8 @@ void client_kill(struct client *client); void client_destroy(struct client *client); int client_handle_connection(int fd, uint32_t mask, void *data); -int client_get_session(struct client *client); -int client_enable_seat(struct client *client); -int client_disable_seat(struct client *client); +int client_get_session(const struct client *client); +int client_send_enable_seat(struct client *client); +int client_send_disable_seat(struct client *client); #endif -- cgit v1.2.3