 |
PcapPlusPlus
20.08
|
1 #ifndef PCAPPP_PLATFORM_SPECIFIC_UTILS
2 #define PCAPPP_PLATFORM_SPECIFIC_UTILS
4 #if defined(WIN32) || defined(WINx64)
12 #define PCAP_SLEEP(seconds) Sleep(seconds*1000)
14 #define PCAP_SLEEP(seconds) sleep(seconds)
18 #define CREATE_DIRECTORY(dir) CreateDirectoryA(dir, NULL)
20 #define CREATE_DIRECTORY(dir) mkdir(dir, 0777)
30 #define PCLOSE _pclose