Mercurial > hg > orthanc-python
comparison Sources/Autogenerated/sdk_GlobalFunctions.impl.h @ 177:008be55355a4
regenerating the wrapper after patching SDK
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 27 Jun 2024 18:16:26 +0200 |
parents | b49eeb36cd0d |
children | 194ba7d6e0f4 46a81ed6e843 |
comparison
equal
deleted
inserted
replaced
176:18f5d8909dd8 | 177:008be55355a4 |
---|---|
82 | 82 |
83 static PyObject* sdk_OrthancPluginCheckVersionAdvanced(PyObject* module, PyObject* args) | 83 static PyObject* sdk_OrthancPluginCheckVersionAdvanced(PyObject* module, PyObject* args) |
84 { | 84 { |
85 PythonLock::LogCall("Calling Python global function: OrthancPluginCheckVersionAdvanced()"); | 85 PythonLock::LogCall("Calling Python global function: OrthancPluginCheckVersionAdvanced()"); |
86 | 86 |
87 int arg0 = 0; | 87 long int arg0 = 0; |
88 int arg1 = 0; | 88 long int arg1 = 0; |
89 int arg2 = 0; | 89 long int arg2 = 0; |
90 | 90 |
91 if (!PyArg_ParseTuple(args, "iii", &arg0, &arg1, &arg2)) | 91 if (!PyArg_ParseTuple(args, "lll", &arg0, &arg1, &arg2)) |
92 { | 92 { |
93 PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (3 arguments expected)"); | 93 PyErr_SetString(PyExc_TypeError, "Bad types for the arguments (3 arguments expected)"); |
94 return NULL; | 94 return NULL; |
95 } | 95 } |
96 long value = OrthancPluginCheckVersionAdvanced(OrthancPlugins::GetGlobalContext(), arg0, arg1, arg2); | 96 long value = OrthancPluginCheckVersionAdvanced(OrthancPlugins::GetGlobalContext(), arg0, arg1, arg2); |