C++ IP API  9.5.5
TCP & UDP for virtual user scripts
Ip.h
Go to the documentation of this file.
1 #pragma once
2 
3 #ifdef WIN32
4 
5 #ifdef IP_EXPORTS
6 #define IP_API __declspec(dllexport)
7 #else
8 #define IP_API __declspec(dllimport)
9 #endif
10 
11 #ifdef IPUSER_EXPORTS
12 #define IPUSER_API __declspec(dllexport)
13 #else
14 #define IPUSER_API __declspec(dllimport)
15 #endif
16 
17 #pragma warning (disable : 4786)
18 #pragma warning (disable : 4251)
19 #else
20 #define IPUSER_API
21 #define IP_API
22 #endif
23