summaryrefslogtreecommitdiff
path: root/src/base/serverSendMsg.h
diff options
context:
space:
mode:
authorxHire <xhire@tuxportal.cz>2009-05-24 20:13:33 +0200
committerxHire <xhire@tuxportal.cz>2009-05-26 01:11:54 +0200
commitb992c007c186fddf31f67a7ed0bd5789cfb9b85e (patch)
tree8afca953f70438207634bc9a1e073bbeafe47ad6 /src/base/serverSendMsg.h
parent6ac111e0ed67187554ead8cccc241029465e8979 (diff)
Rectified the coding style in base .h files
Diffstat (limited to 'src/base/serverSendMsg.h')
-rw-r--r--src/base/serverSendMsg.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/base/serverSendMsg.h b/src/base/serverSendMsg.h
index a4506cd..68bd65c 100644
--- a/src/base/serverSendMsg.h
+++ b/src/base/serverSendMsg.h
@@ -1,16 +1,13 @@
-
#ifndef SERVER_SEND_MSG_H
+#define SERVER_SEND_MSG_H
-# define SERVER_SEND_MSG_H
-
-# include "server.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
+#define PROTO_SEND_ONE 0
+#define PROTO_SEND_ALL 1
+#define PROTO_SEND_BUT 3
+#define PROTO_SEND_ALL_SEES_TUX 4
-extern void send_msg_to_client(int type, client_t * client, char *msg, int type2,
- int id);
+extern void send_msg_to_client(int type, client_t *client, char *msg, int type2, int id);
-#endif
+#endif /* SERVER_SEND_MSG_H */