diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-23 15:41:18 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:11:32 +0200 |
| commit | 4d4dae5cc3a2bf32421ad2d4255079eb1d731647 (patch) | |
| tree | 064450f544b7ba8477cd8c5e51a8410a27a070c0 /src/client/chat.h | |
| parent | c2c1664831c48e841296eb85318f8a63f44856c8 (diff) | |
Rectified the coding style in client .h files
Diffstat (limited to 'src/client/chat.h')
| -rw-r--r-- | src/client/chat.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/src/client/chat.h b/src/client/chat.h index a11b286..5427f60 100644 --- a/src/client/chat.h +++ b/src/client/chat.h @@ -1,18 +1,16 @@ - #ifndef CHAT_H +#define CHAT_H -# define CHAT_H - -# define CHAT_MAX_LINES 10 -# define CHAT_TIME_MULTIPLE 10 -# define CHAT_TIME_BLICK_CURSOR 20 -# define CHAT_LINE_WIDTH 320 +#define CHAT_MAX_LINES 10 +#define CHAT_TIME_MULTIPLE 10 +#define CHAT_TIME_BLICK_CURSOR 20 +#define CHAT_LINE_WIDTH 320 -# define CHAT_SIZE_X 320 -# define CHAT_SIZE_Y 240 +#define CHAT_SIZE_X 320 +#define CHAT_SIZE_Y 240 -# define CHAT_LOCATION_X (WINDOW_SIZE_X/2 - CHAT_SIZE_X/2) -# define CHAT_LOCATION_Y (WINDOW_SIZE_Y/2 - CHAT_SIZE_Y/2) +#define CHAT_LOCATION_X (WINDOW_SIZE_X / 2 - CHAT_SIZE_X / 2) +#define CHAT_LOCATION_Y (WINDOW_SIZE_Y / 2 - CHAT_SIZE_Y / 2) extern void chat_init(); extern void chat_draw(); @@ -22,4 +20,4 @@ extern bool_t chat_is_active(); extern bool_t chat_is_recived_new_msg(); extern void chat_quit(); -#endif +#endif /* CHAT_H */ |