XPMP2
X-Plane multiplayer library 2 - using instancing
XPMPExport.h
Go to the documentation of this file.
1
42
43#ifndef XPMP_EXPORT_H
44#define XPMP_EXPORT_H
45
46#if defined(XPMP2_DLLEXPORT) // Building the DLL
47#define XPMP2_EXPORT __declspec(dllexport)
48#elif defined(XPMP2_DLLIMPORT) // Importing/using DLL
49#define XPMP2_EXPORT __declspec(dllimport)
50#else // Building/using static library
51#define XPMP2_EXPORT
52#endif
53
54#endif /* XPMP_EXPORT_H */