blob: 4a102a8a6b18d9d6074f13e4ff5ae2483da73f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef PUBLIC_SERVER_H
# define PUBLIC_SERVER_H
# include "arena.h"
# include "arenaFile.h"
# define WORLD_COUNT_ROUND_UNLIMITED -1
extern char *publicServer_get_setting(char *env, char *param, char *default_val);
extern void word_inc_round();
extern int publicServer_init();
extern arenaFile_t *choiceArena_get();
extern void eventPublicServer();
extern void my_handler_quit(int n);
extern void publicServer_quit();
extern int publicServer_start();
#endif
|