Fix debugger exception caused by py2/py3 merging error.
--- a/runtime/PLCObject.py Tue Feb 11 15:59:23 2025 +0100
+++ b/runtime/PLCObject.py Mon Feb 17 14:15:48 2025 +0100
@@ -231,7 +231,7 @@
self._RegisterDebugVariable = self.PLClibraryHandle.RegisterDebugVariable
self._RegisterDebugVariable.restype = ctypes.c_int
- self._RegisterDebugVariable.argtypes = [ctypes.c_int, ctypes.c_void_p, ctypes.c_uint32]
+ self._RegisterDebugVariable.argtypes = [ctypes.c_int, ctypes.c_void_p]
self._FreeDebugData = self.PLClibraryHandle.FreeDebugData
self._FreeDebugData.restype = None