PcapPlusPlus
PlatformSpecificUtils.h
1 #ifndef PCAPPP_PLATFORM_SPECIFIC_UTILS
2 #define PCAPPP_PLATFORM_SPECIFIC_UTILS
3 
4 #if defined(WIN32) || defined(WINx64)
5 #include <winbase.h>
6 #else
7 #include <unistd.h>
8 #include <sys/stat.h>
9 #endif
10 
11 #ifdef WIN32
12 #define PCAP_SLEEP(seconds) Sleep(seconds*1000)
13 #else
14 #define PCAP_SLEEP(seconds) sleep(seconds)
15 #endif
16 
17 #ifdef WIN32
18 #define CREATE_DIRECTORY(dir) CreateDirectoryA(dir, NULL)
19 #else
20 #define CREATE_DIRECTORY(dir) mkdir(dir, 0777)
21 #endif
22 
23 #ifdef WIN32
24 #define POPEN _popen
25 #else
26 #define POPEN popen
27 #endif
28 
29 #ifdef WIN32
30 #define PCLOSE _pclose
31 #else
32 #define PCLOSE pclose
33 #endif
34 
35 #endif /* PCAPPP_PLATFORM_SPECIFIC_UTILS */