1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* config.h. Manual config for MSVC. */
#warn "msvc/config.h shouldn't be included for your development environment."
/* Visual Studio 2013 or later is required */
/* Visual Studio 2013 and 2015 do not support __func__ */
/* Visual Studio 2015 and later defines timespec */
/* Disable: warning C4127: conditional expression is constant */
/* Disable: warning C4200: nonstandard extension used : zero-sized array in struct/union */
/* Disable: warning C4201: nonstandard extension used : nameless struct/union */
/* Disable: warning C4324: structure was padded due to __declspec(align()) */
/* Disable: warning C4996: 'GetVersionExA': was declared deprecated */
/* Disable "Banned API" errors when using the MS's WDK OACR/Prefast */
/* Disable "The function 'InitializeCriticalSection' must be called from within a try/except block" */
/* Define to the attribute for default visibility. */
/* Define to 1 to start with debug message logging enabled. */
/* #undef ENABLE_DEBUG_LOGGING */
/* Define to 1 to enable message logging. */
/* Define to 1 if compiling for a Windows platform. */
/* Define to the attribute for enabling parameter checks on printf-like
functions. */
/* Define to 1 to output logging messages to the systemwide log. */
/* #undef USE_SYSTEM_LOGGING_FACILITY */