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
6c64da8b
Commit
6c64da8b
authored
May 19, 2009
by
Ilya Shpigor
Committed by
Alexandre Julliard
May 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Subscribe to SetProgress event on adding progress bar control to dialog.
parent
60167dfb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
dialog.c
dlls/msi/dialog.c
+10
-1
No files found.
dlls/msi/dialog.c
View file @
6c64da8b
...
...
@@ -135,6 +135,8 @@ static const WCHAR szMaskedEdit[] = { 'M','a','s','k','e','d','E','d','i','t',0
static
const
WCHAR
szPathEdit
[]
=
{
'P'
,
'a'
,
't'
,
'h'
,
'E'
,
'd'
,
'i'
,
't'
,
0
};
static
const
WCHAR
szProgressBar
[]
=
{
'P'
,
'r'
,
'o'
,
'g'
,
'r'
,
'e'
,
's'
,
's'
,
'B'
,
'a'
,
'r'
,
0
};
static
const
WCHAR
szSetProgress
[]
=
{
'S'
,
'e'
,
't'
,
'P'
,
'r'
,
'o'
,
'g'
,
'r'
,
'e'
,
's'
,
's'
,
0
};
static
const
WCHAR
szRadioButtonGroup
[]
=
{
'R'
,
'a'
,
'd'
,
'i'
,
'o'
,
'B'
,
'u'
,
't'
,
't'
,
'o'
,
'n'
,
'G'
,
'r'
,
'o'
,
'u'
,
'p'
,
0
};
static
const
WCHAR
szIcon
[]
=
{
'I'
,
'c'
,
'o'
,
'n'
,
0
};
...
...
@@ -1571,7 +1573,14 @@ end:
static
UINT
msi_dialog_progress_bar
(
msi_dialog
*
dialog
,
MSIRECORD
*
rec
)
{
msi_dialog_add_control
(
dialog
,
rec
,
PROGRESS_CLASSW
,
WS_VISIBLE
);
msi_control
*
control
;
control
=
msi_dialog_add_control
(
dialog
,
rec
,
PROGRESS_CLASSW
,
WS_VISIBLE
);
if
(
!
control
)
return
ERROR_FUNCTION_FAILED
;
ControlEvent_SubscribeToEvent
(
dialog
->
package
,
dialog
,
szSetProgress
,
control
->
name
,
szProgress
);
return
ERROR_SUCCESS
;
}
...
...
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