Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
753407ef
Commit
753407ef
authored
Jun 28, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/progress: Implement PBM_GETBKCOLOR.
parent
84f3c504
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
progress.c
dlls/comctl32/progress.c
+3
-1
commctrl.h
include/commctrl.h
+1
-0
No files found.
dlls/comctl32/progress.c
View file @
753407ef
...
...
@@ -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
)
{
...
...
include/commctrl.h
View file @
753407ef
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment