Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0513f3c4
Commit
0513f3c4
authored
Oct 29, 2009
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Oct 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add support for msidbControlAttributesProgress95.
parent
df878035
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
dialog.c
dlls/msi/dialog.c
+11
-1
No files found.
dlls/msi/dialog.c
View file @
0513f3c4
...
...
@@ -685,6 +685,10 @@ static msi_control *msi_dialog_add_control( msi_dialog *dialog,
name
=
MSI_RecordGetString
(
rec
,
2
);
attributes
=
MSI_RecordGetInteger
(
rec
,
8
);
text
=
MSI_RecordGetString
(
rec
,
10
);
TRACE
(
"%s, %s, %08x, %s, %08x
\n
"
,
debugstr_w
(
szCls
),
debugstr_w
(
name
),
attributes
,
debugstr_w
(
text
),
style
);
if
(
attributes
&
msidbControlAttributesVisible
)
style
|=
WS_VISIBLE
;
if
(
~
attributes
&
msidbControlAttributesEnabled
)
...
...
@@ -1575,8 +1579,14 @@ end:
static
UINT
msi_dialog_progress_bar
(
msi_dialog
*
dialog
,
MSIRECORD
*
rec
)
{
msi_control
*
control
;
DWORD
attributes
,
style
;
style
=
WS_VISIBLE
;
attributes
=
MSI_RecordGetInteger
(
rec
,
8
);
if
(
!
(
attributes
&
msidbControlAttributesProgress95
)
)
style
|=
PBS_SMOOTH
;
control
=
msi_dialog_add_control
(
dialog
,
rec
,
PROGRESS_CLASSW
,
WS_VISIBLE
);
control
=
msi_dialog_add_control
(
dialog
,
rec
,
PROGRESS_CLASSW
,
style
);
if
(
!
control
)
return
ERROR_FUNCTION_FAILED
;
...
...
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