comparison Plugin/Plugin.cpp @ 41:af7da36e68f5

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 04 Aug 2020 14:10:56 +0200
parents 8ada1b669194
children 914b8113fd46
comparison
equal deleted inserted replaced
40:f6fe71ef20c1 41:af7da36e68f5
256 ORTHANC_PLUGINS_MINIMAL_MINOR_NUMBER, 256 ORTHANC_PLUGINS_MINIMAL_MINOR_NUMBER,
257 ORTHANC_PLUGINS_MINIMAL_REVISION_NUMBER); 257 ORTHANC_PLUGINS_MINIMAL_REVISION_NUMBER);
258 return -1; 258 return -1;
259 } 259 }
260 260
261 #if defined(ORTHANC_FRAMEWORK_VERSION_IS_ABOVE) // This indicates Orthanc framework >= 1.7.2 261 #if ORTHANC_FRAMEWORK_VERSION_IS_ABOVE(1, 7, 2)
262 Orthanc::Logging::InitializePluginContext(context); 262 Orthanc::Logging::InitializePluginContext(context);
263 #else 263 #else
264 Orthanc::Logging::Initialize(context); 264 Orthanc::Logging::Initialize(context);
265 #endif 265 #endif
266 266