comparison Sources/Plugin.cpp @ 214:d74ed3e6423e

documented orthanc.RegisterStorageCommitmentScpCallback()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 03 Jul 2024 15:29:01 +0200
parents f8dc8dd2da76
children b124c74e6968
comparison
equal deleted inserted replaced
213:f8dc8dd2da76 214:d74ed3e6423e
277 277
278 std::list<PyMethodDef> functions; 278 std::list<PyMethodDef> functions;
279 279
280 280
281 /** 281 /**
282 * New in release 4.1
283 **/
284
285 {
286 PyMethodDef f = { "RegisterStorageCommitmentScpCallback", RegisterStorageCommitmentScpCallback, METH_VARARGS, "" };
287 functions.push_back(f);
288 }
289
290 /**
291 * Append all the global functions that were automatically generated 282 * Append all the global functions that were automatically generated
292 **/ 283 **/
293 284
294 const PyMethodDef* sdk = GetOrthancSdkFunctions(); 285 const PyMethodDef* sdk = GetOrthancSdkFunctions();
295 286