This is my remote dll file location. t32api = ctypes.cdll.LoadLibrary('C:\Users\xxxxxx\Downloads\t32api64.dll')`
From the below code snippet, I am not getting any functions like T32_Config / Config
# Configure communication channel
t32api.T32_Config(b"NODE=",b"localhost")
t32api.T32_Config(b"PORT=",b"20000")
t32api.T32_Config(b"PACKLEN=",b"1024")
t32api.T32_Exit()
By using this code, I am not able to communicate with the Hardware(Licensed). Can anyone help?