function GetStatusCardReader(var StatusCardReader: Word): Integer; stdcall;
Пробую делать так:
from ctypes import * libc = windll.LoadLibrary('C:\test.dll') func = libc.GetStatusCardReader func.restype = c_short print(func)
Как получить значение?
from ctypes import * libc = windll.LoadLibrary('C:\test.dll') func = libc.GetStatusCardReader func.restype = c_short print(func)