diff options
Diffstat (limited to 'include/proto.h')
| -rw-r--r-- | include/proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/proto.h b/include/proto.h index 5813165..a741148 100644 --- a/include/proto.h +++ b/include/proto.h @@ -6,6 +6,8 @@ #include "tux.h" #include "server.h" +extern void proto_send_hello_client(); +extern void proto_recv_hello_server(client_t *client, char *msg); extern void proto_send_init_server(client_t *client); extern void proto_recv_init_client(char *msg); extern void proto_send_event_server(tux_t *tux, int action, client_t *client); @@ -20,6 +22,10 @@ extern void proto_send_additem_server(item_t *p); extern void proto_recv_additem_client(char *msg); extern void proto_send_context_client(tux_t *tux); extern void proto_recv_context_server(client_t *client, char *msg); +extern void proto_send_end_client(); +extern void proto_recv_end_server(client_t *client, char *msg); +extern void proto_send_end_server(); +extern void proto_recv_end_client(char *msg); #endif |
