OLD | NEW |
| (Empty) |
1 /* config.h. Manual config for MSVC. */ | |
2 | |
3 #ifndef _MSC_VER | |
4 #warn "msvc/config.h shouldn't be included for your development environment." | |
5 #error "Please make sure the msvc/ directory is removed from your build path." | |
6 #endif | |
7 | |
8 /* Default visibility */ | |
9 #define DEFAULT_VISIBILITY /**/ | |
10 | |
11 /* Debug message logging */ | |
12 //#define ENABLE_DEBUG_LOGGING 1 | |
13 | |
14 /* Message logging */ | |
15 #define ENABLE_LOGGING 1 | |
16 | |
17 /* Windows backend */ | |
18 #define OS_WINDOWS 1 | |
19 | |
20 /* type of second poll() argument */ | |
21 #define POLL_NFDS_TYPE unsigned int | |
22 | |
23 #include <Winsock2.h> | |
OLD | NEW |