libpcap中的平臺無關性之條件編譯

#ifndef lib_pcap_pcap_h
#define lib_pcap_pcap_h
#if defined(WIN32)
   #include <pcap-stdinc.h>
#elif defined(MSDOS)
   #include <sys/types.h>
   #include <sys/socket.h>
#elif 
   #include <sys/types.h>
   #include <sys/time.h>
#endif

#ifndef PCAP_DONT_INCLUDE_PCAP_BPF_H
   #include <pcap/bpf.h>
#endif

#include <stdio.h>
#ifdef __cplusplus
#extern "C" {
#endif 

....
#ifdef __cplusplus
}
#endif
#endif


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章