-
SergGG (04.06.08 14:15) [0]Подскажите пожалуйста, как определить Номер иконки курсора мыши при наведении на окна других приложений.GetCursor
работает только в окне моего проекта.
Спасибо!!! -
Юрий Зотов © (05.06.08 01:31) [1]Из MSDN:
1. Windows 98 and Windows NT 4.0 SP3 and later: To get information on the global cursor, even if it is not owned by the current thread, use GetCursorInfo.
2. BOOL GetCursorInfo(PCURSORINFO pci);
pci
[out] Pointer to a CURSORINFO structure that receives the information. Note that you must set CURSORINFO.cbSize to sizeof(CURSORINFO) before calling this function.
3.
typedef struct {
DWORD cbSize;
DWORD flags;
HCURSOR hCursor;
POINT ptScreenPos;
} CURSORINFO, *PCURSORINFO, *LPCURSORINFO; -
Германн © (05.06.08 03:52) [2]
> Юрий Зотов © (05.06.08 01:31) [1]
Даже мне читать страшно!
:)