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
54391a11
Commit
54391a11
authored
Feb 16, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Update the UI when registering or unregistering type libraries.
parent
4ccbcb02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
action.c
dlls/msi/action.c
+4
-4
No files found.
dlls/msi/action.c
View file @
54391a11
...
...
@@ -2882,6 +2882,8 @@ static UINT ITERATE_RegisterTypeLibraries(MSIRECORD *row, LPVOID param)
if
(
!
file
)
return
ERROR_SUCCESS
;
ui_actiondata
(
package
,
szRegisterTypeLibraries
,
row
);
module
=
LoadLibraryExW
(
file
->
TargetPath
,
NULL
,
LOAD_LIBRARY_AS_DATAFILE
);
if
(
module
)
{
...
...
@@ -2911,11 +2913,7 @@ static UINT ITERATE_RegisterTypeLibraries(MSIRECORD *row, LPVOID param)
ERR
(
"Failed to register type library %s
\n
"
,
debugstr_w
(
tl_struct
.
path
));
else
{
ui_actiondata
(
package
,
szRegisterTypeLibraries
,
row
);
TRACE
(
"Registered %s
\n
"
,
debugstr_w
(
tl_struct
.
path
));
}
ITypeLib_Release
(
tl_struct
.
ptLib
);
msi_free
(
tl_struct
.
path
);
...
...
@@ -2990,6 +2988,8 @@ static UINT ITERATE_UnregisterTypeLibraries( MSIRECORD *row, LPVOID param )
}
comp
->
Action
=
INSTALLSTATE_ABSENT
;
ui_actiondata
(
package
,
szUnregisterTypeLibraries
,
row
);
guid
=
MSI_RecordGetString
(
row
,
1
);
CLSIDFromString
(
(
LPWSTR
)
guid
,
&
libid
);
version
=
MSI_RecordGetInteger
(
row
,
4
);
...
...
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