summaryrefslogtreecommitdiff
path: root/src/base/serverSendMsg.h
blob: 8239c7df6f69a6000cb41e8953488a9d54d4416d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#ifndef SERVER_SEND_MSG_H

#    define SERVER_SEND_MSG_H

#    include "server.h"

#    define PROTO_SEND_ONE			0
#    define PROTO_SEND_ALL			1
#    define PROTO_SEND_BUT			3
#    define PROTO_SEND_ALL_SEES_TUX		4

extern void sendMsg_to_client(int type, client_t * client, char *msg, int type2,
							int id);

#endif