C_runtime/PLCObject.cpp
changeset 4043 b217fb367574
parent 4032 1ffff67678ad
child 4045 6975b486b07f
--- a/C_runtime/PLCObject.cpp	Tue Nov 19 23:52:04 2024 +0100
+++ b/C_runtime/PLCObject.cpp	Fri Nov 22 16:31:51 2024 +0100
@@ -675,3 +675,13 @@
         "TraceThreadProc ended normally");
 }
 
+uint32_t PLCObject::ExtendedCall(const char * method, const binary_t * argument, binary_t * answer)
+{
+    // TODO
+
+    answer->data = (uint8_t*)"";
+    answer->dataLength = 0;
+
+    return 0;
+}
+