diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-01-04 10:58:36 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-01-04 10:58:36 +0000 |
commit | 61b9f929185ca179ea3996acd939877d6a836428 (patch) | |
tree | f8bb039afe516c4fe4307c8a7781f06c474c7717 /winsup/w32api/include/commctrl.h | |
parent | 670867158e65e44b240ffbd0e419dd43b0f90038 (diff) | |
download | cygnal-61b9f929185ca179ea3996acd939877d6a836428.tar.gz cygnal-61b9f929185ca179ea3996acd939877d6a836428.tar.bz2 cygnal-61b9f929185ca179ea3996acd939877d6a836428.zip |
* include/commctrl.h (TOOLINFO[AW]: Update structures.
(LVHITTESTINFO): Likewise.
* include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
(GRADIENT_RECT): Likewise.
Diffstat (limited to 'winsup/w32api/include/commctrl.h')
-rw-r--r-- | winsup/w32api/include/commctrl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/winsup/w32api/include/commctrl.h b/winsup/w32api/include/commctrl.h index 328b54673..4ad2e9c2d 100644 --- a/winsup/w32api/include/commctrl.h +++ b/winsup/w32api/include/commctrl.h @@ -1634,6 +1634,9 @@ typedef struct tagTOOLINFOA { RECT rect; HINSTANCE hinst; LPSTR lpszText; +#if (_WIN32_IE >= 0x0300) + LPARAM lParam; +#endif } TOOLINFOA,*PTOOLINFOA,*LPTOOLINFOA; typedef struct tagTOOLINFOW { UINT cbSize; @@ -1643,6 +1646,9 @@ typedef struct tagTOOLINFOW { RECT rect; HINSTANCE hinst; LPWSTR lpszText; +#if (_WIN32_IE >= 0x0300) + LPARAM lParam; +#endif } TOOLINFOW,*PTOOLINFOW,*LPTOOLINFOW; typedef struct _TT_HITTESTINFOA { HWND hwnd; @@ -1741,6 +1747,9 @@ typedef struct _LVHITTESTINFO { POINT pt; UINT flags; int iItem; +#if (_WIN32_IE >= 0x0300) + int iSubItem; +#endif } LVHITTESTINFO; #define _LV_HITTESTINFO _LVHITTESTINFO #define LV_HITTESTINFO LVHITTESTINFO |