comparison Resources/Orthanc/Plugins/OrthancPluginCppWrapper.h @ 54:5915547fa6f2

upgraded SDK and framework to 1.11.3
author Alain Mazy <am@osimis.io>
date Fri, 03 Feb 2023 18:44:53 +0100
parents f4e828607f02
children 5fb01c588287
comparison
equal deleted inserted replaced
53:6577d529e83a 54:5915547fa6f2
831 831
832 static void CallbackFinalize(void* job); 832 static void CallbackFinalize(void* job);
833 833
834 static float CallbackGetProgress(void* job); 834 static float CallbackGetProgress(void* job);
835 835
836 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 11, 3)
837 static OrthancPluginErrorCode CallbackGetContent(OrthancPluginMemoryBuffer* target,
838 void* job);
839 #else
836 static const char* CallbackGetContent(void* job); 840 static const char* CallbackGetContent(void* job);
837 841 #endif
842
843 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 11, 3)
844 static int32_t CallbackGetSerialized(OrthancPluginMemoryBuffer* target,
845 void* job);
846 #else
838 static const char* CallbackGetSerialized(void* job); 847 static const char* CallbackGetSerialized(void* job);
848 #endif
839 849
840 static OrthancPluginJobStepStatus CallbackStep(void* job); 850 static OrthancPluginJobStepStatus CallbackStep(void* job);
841 851
842 static OrthancPluginErrorCode CallbackStop(void* job, 852 static OrthancPluginErrorCode CallbackStop(void* job,
843 OrthancPluginJobStopReason reason); 853 OrthancPluginJobStopReason reason);