Доброго времени суток, имеется код:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys,os,optparse,ctypes,platform,time
login = 'admin'
passw = '123456'
host = '10.10.15.61'
port = '37777'
def Auth():
dll = ctypes.CDLL('./libdhnetsdk.so')
init = dll.CLIENT_Init(host.encode('ascii'), 0)
dll.CLIENT_Login.restype = ctypes.c_longlong
loginH = dll.CLIENT_Login(host.encode('ascii'), port.encode('ascii'), login.encode('ascii'), passw.encode('ascii'), 0)
print(loginH)
Auth()
Когда распечатываю переменную loginH возвращается 0, как узнать что возвращается загруженной библиотекой?