Mercurial > hg > orthanc
changeset 6214:e64c3ae969e4 sql-opti
merged default -> sql-opti
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Fri, 27 Jun 2025 15:00:33 +0200 |
parents | 0290cf80dd93 (diff) 3a974dbf4740 (current diff) |
children | 02c3f861b6e6 |
files | OrthancServer/Sources/ServerEnumerations.h |
diffstat | 3 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Wed Jun 25 15:08:50 2025 +0200 +++ b/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Fri Jun 27 15:00:33 2025 +0200 @@ -52,7 +52,7 @@ // This transfers the ownership of the message void Enqueue(IDynamicObject* message); - // The caller is responsible to delete the dequeud message! + // The caller is responsible to delete the dequeued message! IDynamicObject* Dequeue(int32_t millisecondsTimeout); bool WaitEmpty(int32_t millisecondsTimeout);
--- a/OrthancServer/Sources/ServerEnumerations.cpp Wed Jun 25 15:08:50 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.cpp Fri Jun 27 15:00:33 2025 +0200 @@ -64,6 +64,8 @@ dictMetadataType_.Add(MetadataType_MainDicomTagsSignature, "MainDicomTagsSignature"); dictMetadataType_.Add(MetadataType_MainDicomSequences, "MainDicomSequences"); dictMetadataType_.Add(MetadataType_Instance_PixelDataVR, "PixelDataVR"); + dictMetadataType_.Add(MetadataType_Patient_IsProtected, "IsProtected"); + dictMetadataType_.Add(MetadataType_Patient_PatientRecyclingOrder, "PatientRecyclingOrder"); dictContentType_.Add(FileContentType_Dicom, "dicom"); dictContentType_.Add(FileContentType_DicomAsJson, "dicom-as-json");
--- a/OrthancServer/Sources/ServerEnumerations.h Wed Jun 25 15:08:50 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.h Fri Jun 27 15:00:33 2025 +0200 @@ -210,6 +210,8 @@ MetadataType_MainDicomTagsSignature = 15, // New in Orthanc 1.11.0 MetadataType_MainDicomSequences = 16, // New in Orthanc 1.11.1 MetadataType_Instance_PixelDataVR = 17, // New in Orthanc 1.12.1 + MetadataType_Patient_IsProtected = 18, // New in Orthanc 1.12.99 (used only by DB plugins) + MetadataType_Patient_PatientRecyclingOrder = 19, // New in Orthanc 1.12.99 (used only by DB plugins) // Make sure that the value "65535" can be stored into this enumeration MetadataType_StartUser = 1024,