﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2432	$tagREBARBANDINFO in StructureConstants.au3	Starg	Matt Diesel	"GuiReBar UDF doesn't work correctly on Windows XP due to the wrong `$tagREBARBANDINFO` in `StructureConstants.au3`.

I think this
{{{
Global Const $tagREBARBANDINFO = ""uint cbSize;uint fMask;uint fStyle;dword clrFore;dword clrBack;ptr lpText;uint cch;"" & _
		""int iImage;hwnd hwndChild;uint cxMinChild;uint cyMinChild;uint cx;handle hbmBack;uint wID;uint cyChild;uint cyMaxChild;"" & _
		""uint cyIntegral;uint cxIdeal;lparam lParam;uint cxHeader"" & ((@OSVersion = ""WIN_XP"") ? """" : "";"" & $tagRECT) & "";uint uChevronState""
}}}
should be
{{{
Global Const $tagREBARBANDINFO = ""uint cbSize;uint fMask;uint fStyle;dword clrFore;dword clrBack;ptr lpText;uint cch;"" & _
		""int iImage;hwnd hwndChild;uint cxMinChild;uint cyMinChild;uint cx;handle hbmBack;uint wID;uint cyChild;uint cyMaxChild;"" & _
		""uint cyIntegral;uint cxIdeal;lparam lParam;uint cxHeader"" & ((@OSVersion = ""WIN_XP"") ? """" : "";"" & $tagRECT & "";uint uChevronState"")
}}}

[http://msdn.microsoft.com/en-us/library/windows/desktop/bb774393(v=vs.85).aspx REBARBANDINFO structure (MSDN)]"	Bug	closed	3.3.9.20	Standard UDFs	3.3.9.19	None	Fixed		
