In paramiko, we try to find a Pageant window using either the win32all module or the ctypes module.
win32all is not implemented on IronPython, which is to be expected, but ctypes is. However, FindWindowA doesn't do what we expect: On CPython: >>> import ctypes >>> ctypes.windll.user32.FindWindowA('Pageant','Pageant') 131376 On IronPython: >>> import ctypes >>> ctypes.windll.user32.FindWindowA('Pageant','Pageant') 0 Am I doing something that isn't expected to work? Cheers, Michael van der Kolff
_______________________________________________ Ironpython-users mailing list Ironpython-users@python.org http://mail.python.org/mailman/listinfo/ironpython-users