Jacob Kruger wrote:
> ... 
> But, while something like .GetCursorInfo looks promising, I am
> struggling to find more info about what the first two returned items
> are - one of them seems to be an integer which almost matches the same
> value you get returned using just .GetCursor(), ...
>  
> Suggestions?

You always need to remember that virtually everything exposed by the
PyWin32 modules are wrappers around ordinary Win32 APIs.  The master
reference for Win32 APIs is the MSDN library.  If you had Googled for
GetCursorInfo, you'd get this page:
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms648389.aspx
which would point you to the CURSORINFO structure that has your goodies:
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms648381.aspx

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

_______________________________________________
python-win32 mailing list
python-win32@python.org
https://mail.python.org/mailman/listinfo/python-win32

Reply via email to