123456789101112131415161718192021222324252627 |
- #ifdef _WIN32
- #include <WinSock2.h>
- #define WIN32_LEAN_AND_MEAN
- #include <Mmsystem.h>
- #include <windows.h>
- #else
- //#include <wtypes.h>
- #include <semaphore.h>
- #endif // _WIN32
- #include <apr_tables.h>
- #include <apr_thread_mutex.h>
- #include <apr_ring.h>
- #include <apr_strings.h>
- #include <apr_thread_proc.h>
- #include <apr_pools.h>
- #include <apr_general.h>
- #ifndef CONTAINING_RECORD
- #define CONTAINING_RECORD(address, type, field) \
- ((type*)(((uint64_t)address) - (uint64_t)(&(((type*)0)->field))))
- #endif
|