mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
This allows us to better implement alternative drivers for devices, such as for device sharing servers or talking to CoreMini processors within the same device.
12 lines
283 B
C
12 lines
283 B
C
#ifndef __PCAP_H_
|
|
#define __PCAP_H_
|
|
|
|
#ifdef _WIN32
|
|
#include "icsneo/platform/windows/pcap.h"
|
|
#elif defined(__unix__) || (defined(__APPLE__) && defined(__MACH__))
|
|
#include "icsneo/platform/posix/pcap.h"
|
|
#else
|
|
#warning "This platform is not supported by the PCAP driver"
|
|
#endif
|
|
|
|
#endif |