Warning, file /include/root/DllImport.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef ROOT_DllImport
0019 #define ROOT_DllImport
0020
0021 #if defined(WIN32)
0022 # define R__DllImport __declspec( dllimport )
0023 #else
0024 # define R__DllImport
0025 #endif
0026 # define R__EXTERN R__DllImport extern
0027
0028 #ifndef R__DLLEXPORT
0029 # ifdef _MSC_VER
0030 # define R__DLLEXPORT __declspec(dllexport)
0031 # else
0032 # define R__DLLEXPORT __attribute__ ((visibility ("default")))
0033 # endif
0034 #endif
0035
0036 #endif