I am trying to call functions from a DLL
`function oziRepositionWP(Number:integer;lat,lon:double):integer;stdcall; `
I have written the code in python
no = c_int(1)
lat = c_double(34.00962)
lon = c_double(74.80067)
var =windll.OziAPI.oziRepositionWP(byref(no),byref(lat),byref(lon))
But i get the message
var =windll.OziAPI.oziRepositionWP(byref(no),byref(lat),byref(lon))
ValueError: Procedure probably called with not enough arguments (8 bytes missing)
where am i going wrong please help