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
d32d1c86
Commit
d32d1c86
authored
Dec 04, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Dec 05, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Partially implement new messages.
parent
5e95e3d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
5 deletions
+11
-5
progress.c
dlls/comctl32/progress.c
+11
-5
No files found.
dlls/comctl32/progress.c
View file @
d32d1c86
...
...
@@ -29,11 +29,6 @@
*
* TODO:
*
* Messages:
* -- PBM_GETSTEP
* -- PBM_SETSTATE
* -- PBM_GETSTATE
*
* Styles:
* -- PBS_SMOOTHREVERSE
*
...
...
@@ -662,6 +657,9 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
return
oldStep
;
}
case
PBM_GETSTEP
:
return
infoPtr
->
Step
;
case
PBM_STEPIT
:
{
INT
oldVal
;
...
...
@@ -707,6 +705,14 @@ static LRESULT WINAPI ProgressWindowProc(HWND hwnd, UINT message,
case
PBM_GETBKCOLOR
:
return
infoPtr
->
ColorBk
;
case
PBM_SETSTATE
:
if
(
wParam
!=
PBST_NORMAL
)
FIXME
(
"state %04lx not yet handled"
,
wParam
);
return
PBST_NORMAL
;
case
PBM_GETSTATE
:
return
PBST_NORMAL
;
case
PBM_SETMARQUEE
:
if
(
wParam
!=
0
)
{
...
...
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