* include/commctrl.h (TOOLINFO[AW]: Update structures.
(LVHITTESTINFO): Likewise. * include/wingdi.h (GRADIENT_TRIANGLE): Add structure. (GRADIENT_RECT): Likewise.
This commit is contained in:
parent
670867158e
commit
61b9f92918
|
@ -1,3 +1,11 @@
|
||||||
|
2003-01-04 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/commctrl.h (TOOLINFO[AW]: Update structures.
|
||||||
|
(LVHITTESTINFO): Likewise.
|
||||||
|
|
||||||
|
* include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
|
||||||
|
(GRADIENT_RECT): Likewise.
|
||||||
|
|
||||||
2003-01-03 Bang Jun-Young <junyoung@netbsd.org>
|
2003-01-03 Bang Jun-Young <junyoung@netbsd.org>
|
||||||
|
|
||||||
* include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
|
* include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
|
||||||
|
|
|
@ -1634,6 +1634,9 @@ typedef struct tagTOOLINFOA {
|
||||||
RECT rect;
|
RECT rect;
|
||||||
HINSTANCE hinst;
|
HINSTANCE hinst;
|
||||||
LPSTR lpszText;
|
LPSTR lpszText;
|
||||||
|
#if (_WIN32_IE >= 0x0300)
|
||||||
|
LPARAM lParam;
|
||||||
|
#endif
|
||||||
} TOOLINFOA,*PTOOLINFOA,*LPTOOLINFOA;
|
} TOOLINFOA,*PTOOLINFOA,*LPTOOLINFOA;
|
||||||
typedef struct tagTOOLINFOW {
|
typedef struct tagTOOLINFOW {
|
||||||
UINT cbSize;
|
UINT cbSize;
|
||||||
|
@ -1643,6 +1646,9 @@ typedef struct tagTOOLINFOW {
|
||||||
RECT rect;
|
RECT rect;
|
||||||
HINSTANCE hinst;
|
HINSTANCE hinst;
|
||||||
LPWSTR lpszText;
|
LPWSTR lpszText;
|
||||||
|
#if (_WIN32_IE >= 0x0300)
|
||||||
|
LPARAM lParam;
|
||||||
|
#endif
|
||||||
} TOOLINFOW,*PTOOLINFOW,*LPTOOLINFOW;
|
} TOOLINFOW,*PTOOLINFOW,*LPTOOLINFOW;
|
||||||
typedef struct _TT_HITTESTINFOA {
|
typedef struct _TT_HITTESTINFOA {
|
||||||
HWND hwnd;
|
HWND hwnd;
|
||||||
|
@ -1741,6 +1747,9 @@ typedef struct _LVHITTESTINFO {
|
||||||
POINT pt;
|
POINT pt;
|
||||||
UINT flags;
|
UINT flags;
|
||||||
int iItem;
|
int iItem;
|
||||||
|
#if (_WIN32_IE >= 0x0300)
|
||||||
|
int iSubItem;
|
||||||
|
#endif
|
||||||
} LVHITTESTINFO;
|
} LVHITTESTINFO;
|
||||||
#define _LV_HITTESTINFO _LVHITTESTINFO
|
#define _LV_HITTESTINFO _LVHITTESTINFO
|
||||||
#define LV_HITTESTINFO LVHITTESTINFO
|
#define LV_HITTESTINFO LVHITTESTINFO
|
||||||
|
|
|
@ -2359,6 +2359,15 @@ typedef struct _TRIVERTEX {
|
||||||
COLOR16 Blue;
|
COLOR16 Blue;
|
||||||
COLOR16 Alpha;
|
COLOR16 Alpha;
|
||||||
} TRIVERTEX, *PTRIVERTEX, *LPTRIVERTEX;
|
} TRIVERTEX, *PTRIVERTEX, *LPTRIVERTEX;
|
||||||
|
typedef struct _GRADIENT_TRIANGLE {
|
||||||
|
ULONG Vertex1;
|
||||||
|
ULONG Vertex2;
|
||||||
|
ULONG Vertex3;
|
||||||
|
} GRADIENT_TRIANGLE,*PGRADIENT_TRIANGLE,*LPGRADIENT_TRIANGLE;
|
||||||
|
typedef struct _GRADIENT_RECT {
|
||||||
|
ULONG UpperLeft;
|
||||||
|
ULONG LowerRight;
|
||||||
|
}GRADIENT_RECT,*PGRADIENT_RECT,*LPGRADIENT_RECT;
|
||||||
typedef struct _DISPLAY_DEVICE {
|
typedef struct _DISPLAY_DEVICE {
|
||||||
DWORD cb;
|
DWORD cb;
|
||||||
WCHAR DeviceName[32];
|
WCHAR DeviceName[32];
|
||||||
|
|
Loading…
Reference in New Issue