Mercurial > hg > orthanc
changeset 6247:02c3f861b6e6 sql-opti
merged default -> sql-opti
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Mon, 14 Jul 2025 16:13:22 +0200 |
parents | e64c3ae969e4 (diff) d70e4de0c847 (current diff) |
children | afc746c090f6 |
files | |
diffstat | 3 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Mon Jul 14 16:10:24 2025 +0200 +++ b/OrthancFramework/Sources/MultiThreading/SharedMessageQueue.h Mon Jul 14 16:13:22 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 Mon Jul 14 16:10:24 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.cpp Mon Jul 14 16:13:22 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 Mon Jul 14 16:10:24 2025 +0200 +++ b/OrthancServer/Sources/ServerEnumerations.h Mon Jul 14 16:13:22 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,