comctl32/progress: Implement PBM_GETBKCOLOR.

oldstable
Nikolay Sivov 2009-06-28 02:51:59 +04:00 committed by Alexandre Julliard
parent 84f3c50474
commit 753407ef82
2 changed files with 4 additions and 1 deletions

View File

@ -31,7 +31,6 @@
*
* Messages:
* -- PBM_GETSTEP
* -- PBM_GETBKCOLOR
* -- PBM_SETSTATE
* -- PBM_GETSTATE
*
@ -722,6 +721,9 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
InvalidateRect(hwnd, NULL, TRUE);
return 0;
case PBM_GETBKCOLOR:
return infoPtr->ColorBk;
case PBM_SETMARQUEE:
if(wParam != 0)
{

View File

@ -484,6 +484,7 @@ static const WCHAR PROGRESS_CLASSW[] = { 'm','s','c','t','l','s','_',
#define PBM_GETPOS (WM_USER+8)
#define PBM_SETBARCOLOR (WM_USER+9)
#define PBM_SETMARQUEE (WM_USER+10)
#define PBM_GETBKCOLOR (WM_USER+14)
#define PBM_GETBARCOLOR (WM_USER+15)
#define PBM_SETBKCOLOR CCM_SETBKCOLOR