comparison OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h @ 4915:189ae9a37e01

reorder arguments to put the target as first argument (convention)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 22 Feb 2022 22:18:54 +0100
parents c1b19f95e166
children 676e03e69703
comparison
equal deleted inserted replaced
4914:4b10cbf3ccc8 4915:189ae9a37e01
7856 * OrthancPluginReceivedInstanceCallbackResult_Modified to store the modified DICOM, 7856 * OrthancPluginReceivedInstanceCallbackResult_Modified to store the modified DICOM,
7857 * OrthancPluginReceivedInstanceCallbackResult_Discard to tell Orthanc to discard the instance. 7857 * OrthancPluginReceivedInstanceCallbackResult_Discard to tell Orthanc to discard the instance.
7858 * @ingroup Callback 7858 * @ingroup Callback
7859 **/ 7859 **/
7860 typedef OrthancPluginReceivedInstanceCallbackResult (*OrthancPluginReceivedInstanceCallback) ( 7860 typedef OrthancPluginReceivedInstanceCallbackResult (*OrthancPluginReceivedInstanceCallback) (
7861 OrthancPluginMemoryBuffer64* modifiedDicomBuffer,
7861 const void* receivedDicomBuffer, 7862 const void* receivedDicomBuffer,
7862 uint64_t receivedDicomBufferSize, 7863 uint64_t receivedDicomBufferSize);
7863 OrthancPluginMemoryBuffer64* modifiedDicomBuffer
7864 );
7865 7864
7866 7865
7867 typedef struct 7866 typedef struct
7868 { 7867 {
7869 OrthancPluginReceivedInstanceCallback callback; 7868 OrthancPluginReceivedInstanceCallback callback;