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
244405af
Commit
244405af
authored
Aug 02, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Register advertised components too.
parent
5234c8c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
14 deletions
+6
-14
classes.c
dlls/msi/classes.c
+6
-14
No files found.
dlls/msi/classes.c
View file @
244405af
...
...
@@ -807,11 +807,6 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE *package)
if
(
rc
!=
ERROR_SUCCESS
)
return
ERROR_FUNCTION_FAILED
;
/* install_on_demand should be set if OLE supports install on demand OLE
* servers. For now i am defaulting to FALSE because i do not know how to
* check, and i am told our builtin OLE does not support it
*/
LIST_FOR_EACH_ENTRY
(
cls
,
&
package
->
classes
,
MSICLASS
,
entry
)
{
MSICOMPONENT
*
comp
;
...
...
@@ -826,17 +821,14 @@ UINT ACTION_RegisterClassInfo(MSIPACKAGE *package)
feature
=
cls
->
Feature
;
/*
* yes. MSDN says that these are based on _Feature_ not on
* Component. So verify the feature is to be installed
/*
* MSDN says that these are based on Feature not on Component.
*/
if
(
!
ACTION_VerifyFeatureForAction
(
feature
,
INSTALLSTATE_LOCAL
))
/* && !(install_on_demand &&
ACTION_VerifyFeatureForAction( feature, INSTALLSTATE_ADVERTISED ))) */
if
(
!
ACTION_VerifyFeatureForAction
(
feature
,
INSTALLSTATE_LOCAL
)
&&
!
ACTION_VerifyFeatureForAction
(
feature
,
INSTALLSTATE_ADVERTISED
))
{
TRACE
(
"Skipping class %s reg due to disabled feature %s
\n
"
,
debugstr_w
(
cls
->
clsid
),
debugstr_w
(
feature
->
Feature
));
TRACE
(
"Skipping class %s reg due to disabled feature %s
\n
"
,
debugstr_w
(
cls
->
clsid
),
debugstr_w
(
feature
->
Feature
));
continue
;
}
...
...
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