Nikolay Sivov wrote:
Changelog: - Update Rebar structure
From b0d8b14a60f391144077cf8c053df5ea36fd22c4 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov <bunglehead(a)gmail.com> Date: Sun, 28 Jun 2009 03:40:20 +0400 Subject: Update Rebar structure
--- include/commctrl.h | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/include/commctrl.h b/include/commctrl.h index 2c887d0..beecb52 100644 --- a/include/commctrl.h +++ b/include/commctrl.h @@ -1988,6 +1988,9 @@ typedef struct tagREBARBANDINFOA UINT cxIdeal; LPARAM lParam; UINT cxHeader; + /* _WIN32_WINNT >= 0x0600 */ + RECT rcChevronLocation; + UINT uChevronState; } REBARBANDINFOA, *LPREBARBANDINFOA;
typedef REBARBANDINFOA const *LPCREBARBANDINFOA; @@ -2014,6 +2017,9 @@ typedef struct tagREBARBANDINFOW UINT cxIdeal; LPARAM lParam; UINT cxHeader; + /* _WIN32_WINNT >= 0x0600 */ + RECT rcChevronLocation; + UINT uChevronState; } REBARBANDINFOW, *LPREBARBANDINFOW;
typedef REBARBANDINFOW const *LPCREBARBANDINFOW; Hi Nikolay,
Looks like this introduces test failures on everything below Vista. Could you check? -- Cheers, Paul.