DJI Onboard SDK  4.0
dji_macros.hpp
Go to the documentation of this file.
1 
29 #ifndef ONBOARDSDK_DJI_MACROS_H
30 #define ONBOARDSDK_DJI_MACROS_H
31 
32 #ifndef DJI_NO_DEPRECATED_WARNING
33 #if (defined __GNUC__ || defined ARMCC)
34 #define DJI_DEPRECATED __attribute__((deprecated))
35 #elif (defined _MSC_VER)
36 #define DJI_DEPRECATED __declspec(deprecated)
37 #else
38 #define DJI_DEPRECATED
39 #endif
40 #else
41 #define DJI_DEPRECATED
42 #endif
43 
44 #endif // ONBOARDSDK_DJI_MACROS_H