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
0b2bd0c9
Commit
0b2bd0c9
authored
Jun 23, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Count progress in units of 512 bytes.
parent
ac994860
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
dialog.c
dlls/msi/dialog.c
+8
-6
No files found.
dlls/msi/dialog.c
View file @
0b2bd0c9
...
...
@@ -637,7 +637,7 @@ void msi_dialog_handle_event( msi_dialog* dialog, LPCWSTR control,
}
else
if
(
!
strcmpW
(
attribute
,
szProgress
)
)
{
DWORD
func
,
val1
,
val2
;
DWORD
func
,
val1
,
val2
,
units
;
func
=
MSI_RecordGetInteger
(
rec
,
1
);
val1
=
MSI_RecordGetInteger
(
rec
,
2
);
...
...
@@ -649,16 +649,17 @@ void msi_dialog_handle_event( msi_dialog* dialog, LPCWSTR control,
{
case
0
:
/* init */
SendMessageW
(
ctrl
->
hwnd
,
PBM_SETRANGE
,
0
,
MAKELPARAM
(
0
,
100
)
);
units
=
val1
/
512
;
if
(
val2
)
{
ctrl
->
progress_max
=
val1
?
val1
:
100
;
ctrl
->
progress_current
=
val1
;
ctrl
->
progress_max
=
units
?
units
:
100
;
ctrl
->
progress_current
=
units
;
ctrl
->
progress_backwards
=
TRUE
;
SendMessageW
(
ctrl
->
hwnd
,
PBM_SETPOS
,
100
,
0
);
}
else
{
ctrl
->
progress_max
=
val1
?
val1
:
100
;
ctrl
->
progress_max
=
units
?
units
:
100
;
ctrl
->
progress_current
=
0
;
ctrl
->
progress_backwards
=
FALSE
;
SendMessageW
(
ctrl
->
hwnd
,
PBM_SETPOS
,
0
,
0
);
...
...
@@ -667,14 +668,15 @@ void msi_dialog_handle_event( msi_dialog* dialog, LPCWSTR control,
case
1
:
/* FIXME: not sure what this is supposed to do */
break
;
case
2
:
/* move */
units
=
val1
/
512
;
if
(
ctrl
->
progress_backwards
)
{
if
(
val1
>=
ctrl
->
progress_current
)
ctrl
->
progress_current
-=
val1
;
if
(
units
>=
ctrl
->
progress_current
)
ctrl
->
progress_current
-=
units
;
else
ctrl
->
progress_current
=
0
;
}
else
{
if
(
ctrl
->
progress_current
+
val1
<
ctrl
->
progress_max
)
ctrl
->
progress_current
+=
val1
;
if
(
ctrl
->
progress_current
+
units
<
ctrl
->
progress_max
)
ctrl
->
progress_current
+=
units
;
else
ctrl
->
progress_current
=
ctrl
->
progress_max
;
}
SendMessageW
(
ctrl
->
hwnd
,
PBM_SETPOS
,
MulDiv
(
100
,
ctrl
->
progress_current
,
ctrl
->
progress_max
),
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