diff options
| author | xHire <xhire@tuxportal.cz> | 2009-05-19 12:41:49 +0200 |
|---|---|---|
| committer | xHire <xhire@tuxportal.cz> | 2009-05-26 01:09:50 +0200 |
| commit | 676600a83becf1d8da0ba8f7a56fa8ce544fe7ce (patch) | |
| tree | 4a9009ac3c781585d502342c15a0a7de0129f414 /src/screen/downArena.h | |
| parent | afb63da1374aadd4a5feccff020e65b616d9b84a (diff) | |
Rectified the coding style in screen .h files
Diffstat (limited to 'src/screen/downArena.h')
| -rw-r--r-- | src/screen/downArena.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/screen/downArena.h b/src/screen/downArena.h index c71a556..444210c 100644 --- a/src/screen/downArena.h +++ b/src/screen/downArena.h @@ -1,16 +1,14 @@ - #ifndef SCREEN_DOWN_ARENA_H +#define SCREEN_DOWN_ARENA_H -# define SCREEN_DOWN_ARENA_H - -# define DOWN_SERVER_STATUS_OK 0 -# define DOWN_SERVER_STATUS_ZOMBIE 1 +#define DOWN_SERVER_STATUS_OK 0 +#define DOWN_SERVER_STATUS_ZOMBIE 1 -# define DOWN_ARENA_BUFFER_SIZE 4096 +#define DOWN_ARENA_BUFFER_SIZE 4096 -# define DOWN_ARENA_MAX_SEND_MSG_STATUS 10 -# define DOWN_ARENA_MAX_TIEMOUT_LIMIT 500 -# define DOWN_ARENA_COUNT_READ_SOCKET 100 +#define DOWN_ARENA_MAX_SEND_MSG_STATUS 10 +#define DOWN_ARENA_MAX_TIEMOUT_LIMIT 500 +#define DOWN_ARENA_COUNT_READ_SOCKET 100 extern void down_arena_start(); extern void down_arena_draw(); @@ -19,4 +17,4 @@ extern void down_arena_stop(); extern void down_arena_init(); extern void down_arena_quit(); -#endif +#endif /* SCREEN_DOWN_ARENA_H */ |