diff options
author | Kenny Levinsen <kl@kl.wtf> | 2020-08-03 00:56:10 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2020-08-03 00:56:10 +0200 |
commit | a003e926001e42f01c257028df4ee294c8d23639 (patch) | |
tree | dbffef2b612e89483e6563ecf04ddd0ae030e714 /include | |
parent | 3e301b8e708e94be0512d8425c33c418a81e5cf7 (diff) | |
download | seatd-a003e926001e42f01c257028df4ee294c8d23639.tar.xz |
client: Prefix notification methods with 'send'
Diffstat (limited to 'include')
-rw-r--r-- | include/client.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 |