/* This include file defines DllImport/DllExport macro to build DLLs under Windows OS. They are defined as dummy for UNIX's */ #ifndef ROOT_DllImport #define ROOT_DllImport #ifndef __CINT__ #if defined(WIN32) && defined(_DLL) # define DllImport __declspec( dllimport ) # define DllExport __declspec( dllexport ) #else # define DllImport # define DllExport #endif # define EXTERN DllImport extern #endif #endif