1
2
3
4
5
6
7
8
9
10
11
12
|
// Windows dedicated server configuration header
#ifndef CONFIG_H_INCLUDED
#define CONFIG_H_INCLUDED
// define if you wish to compile a dedicated server
#define DEDICATED 1
// include common Windows header
#include "win32/config_common.h"
#endif
|