# HG changeset patch # User Sebastien Jodogne # Date 1616063213 -3600 # Node ID 3875dcb65987aad4099141973a8d015250c27b7d # Parent da2e0a457eae4953977cb4143c98452841e09a10# Parent b7fe3494a53cff401144cc560fc9c662a7297876 integration mainline->db-changes diff -r da2e0a457eae -r 3875dcb65987 OrthancServer/Plugins/Engine/PluginsEnumerations.cpp --- a/OrthancServer/Plugins/Engine/PluginsEnumerations.cpp Thu Mar 18 11:26:10 2021 +0100 +++ b/OrthancServer/Plugins/Engine/PluginsEnumerations.cpp Thu Mar 18 11:26:53 2021 +0100 @@ -228,6 +228,9 @@ case FileContentType_DicomAsJson: return OrthancPluginContentType_DicomAsJson; + case FileContentType_DicomUntilPixelData: + return OrthancPluginContentType_DicomUntilPixelData; + default: return OrthancPluginContentType_Unknown; } @@ -244,6 +247,9 @@ case OrthancPluginContentType_DicomAsJson: return FileContentType_DicomAsJson; + case OrthancPluginContentType_DicomUntilPixelData: + return FileContentType_DicomUntilPixelData; + default: return FileContentType_Unknown; } diff -r da2e0a457eae -r 3875dcb65987 OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h --- a/OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h Thu Mar 18 11:26:10 2021 +0100 +++ b/OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h Thu Mar 18 11:26:53 2021 +0100 @@ -686,9 +686,10 @@ **/ typedef enum { - OrthancPluginContentType_Unknown = 0, /*!< Unknown content type */ - OrthancPluginContentType_Dicom = 1, /*!< DICOM */ - OrthancPluginContentType_DicomAsJson = 2, /*!< JSON summary of a DICOM file */ + OrthancPluginContentType_Unknown = 0, /*!< Unknown content type */ + OrthancPluginContentType_Dicom = 1, /*!< DICOM */ + OrthancPluginContentType_DicomAsJson = 2, /*!< JSON summary of a DICOM file */ + OrthancPluginContentType_DicomUntilPixelData = 3, /*!< DICOM Header till pixel data */ _OrthancPluginContentType_INTERNAL = 0x7fffffff } OrthancPluginContentType;