Aller à la documentation de ce fichier.
19 #ifndef MEDC_WIN_DLL_H
20 #define MEDC_WIN_DLL_H
22 #if !defined(MED3_USESTATIC) && defined(PPRO_NT)
24 # define MEDC_EXPORT __declspec( dllexport )
26 # define MEDC_EXPORT __declspec( dllimport )
32 #if defined(__GNUC__) \
33 && ((__GNUC__ >= 4) || (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1))
34 #define MED_DEPRECATED(VERSION_UNUSED) __attribute__((__deprecated__))
35 #elif defined(_MSC_VER)
36 #define MED_DEPRECATED(VERSION) __declspec(deprecated( \
37 "deprecated in " #VERSION))
39 #define MED_DEPRECATED(VERSION_UNUSED)