2001-12-17 Robret Collins <rbtcollins@hotmail.com>
* include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based on MSDN documentation for XP.
This commit is contained in:
parent
ef848e1d43
commit
990d6d89b6
|
@ -1,3 +1,8 @@
|
|||
2001-12-17 Robret Collins <rbtcollins@hotmail.com>
|
||||
|
||||
* include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
|
||||
on MSDN documentation for XP.
|
||||
|
||||
2001-12-07 Earnie Boyd <earnie@users.sf.net>
|
||||
|
||||
* Makefile.in: Increment VERSION.
|
||||
|
|
|
@ -1240,10 +1240,31 @@ typedef struct _HD_ITEMW {
|
|||
LPVOID pvFilter;
|
||||
#endif
|
||||
} HD_ITEMW;
|
||||
typedef struct _HDITEM {
|
||||
UINT mask;
|
||||
int cxy;
|
||||
LPTSTR pszText;
|
||||
HBITMAP hbm;
|
||||
int cchTextMax;
|
||||
int fmt;
|
||||
LPARAM lParam;
|
||||
#if (_WIN32_IE >= 0x0300)
|
||||
int iImage;
|
||||
int iOrder;
|
||||
#endif
|
||||
#if (_WIN32_IE >= 0x0500)
|
||||
UINT type;
|
||||
LPVOID pvFilter;
|
||||
#endif
|
||||
} HDITEM, FAR * LPHDITEM;
|
||||
typedef struct _HD_LAYOUT {
|
||||
RECT *prc;
|
||||
WINDOWPOS *pwpos;
|
||||
} HD_LAYOUT;
|
||||
typedef struct _HD_LAYOUT_XP {
|
||||
RECT FAR* prc;
|
||||
WINDOWPOS FAR* pwpos;
|
||||
} HDLAYOUT, FAR *LPHDLAYOUT;
|
||||
typedef struct _HD_HITTESTINFO {
|
||||
POINT pt;
|
||||
UINT flags;
|
||||
|
|
Loading…
Reference in New Issue