# HG changeset patch # User Sebastien Jodogne # Date 1775559619 -7200 # Node ID 0707c19e093d4bd0e65aa655b27aefcf6456c814 # Parent 7266449c11f02e927e3d1710819a781a2f72f037 OrthancPluginRegisterStorageArea3() was introduced in sdk 1.12.8 diff -r 7266449c11f0 -r 0707c19e093d CodeAnalysis/CustomFunctions.json --- a/CodeAnalysis/CustomFunctions.json Tue Feb 24 12:13:09 2026 +0100 +++ b/CodeAnalysis/CustomFunctions.json Tue Apr 07 13:00:19 2026 +0200 @@ -699,7 +699,7 @@ } ], "return_sdk_type" : "void", - "since_sdk" : [ 1, 9, 0 ], + "since_sdk" : [ 1, 12, 8 ], "sdk_functions" : [ "OrthancPluginRegisterStorageArea3" ] } diff -r 7266449c11f0 -r 0707c19e093d Sources/StorageArea3.cpp --- a/Sources/StorageArea3.cpp Tue Feb 24 12:13:09 2026 +0100 +++ b/Sources/StorageArea3.cpp Tue Apr 07 13:00:19 2026 +0200 @@ -35,7 +35,7 @@ #include -#if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 9, 0) +#if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 8) static PyObject* createCallback2_ = NULL; static PyObject* readCallback2_ = NULL; @@ -378,4 +378,10 @@ } } -#endif \ No newline at end of file +#else + +void FinalizeStorageArea3() +{ +} + +#endif