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
f24a9e2a
Commit
f24a9e2a
authored
Dec 31, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Dec 31, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add stub actions for CCPSearch and RMCCPSearch.
parent
53858d61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
action.c
dlls/msi/action.c
+14
-2
No files found.
dlls/msi/action.c
View file @
f24a9e2a
...
...
@@ -4210,11 +4210,23 @@ static UINT ACTION_UnregisterFonts( MSIPACKAGE *package )
return
msi_unimplemented_action_stub
(
package
,
"UnregisterFonts"
,
table
);
}
static
UINT
ACTION_CCPSearch
(
MSIPACKAGE
*
package
)
{
static
const
WCHAR
table
[]
=
{
'C'
,
'C'
,
'P'
,
'S'
,
'e'
,
'a'
,
'r'
,
'c'
,
'h'
,
0
};
return
msi_unimplemented_action_stub
(
package
,
"CCPSearch"
,
table
);
}
static
UINT
ACTION_RMCCPSearch
(
MSIPACKAGE
*
package
)
{
static
const
WCHAR
table
[]
=
{
'C'
,
'C'
,
'P'
,
'S'
,
'e'
,
'a'
,
'r'
,
'c'
,
'h'
,
0
};
return
msi_unimplemented_action_stub
(
package
,
"RMCCPSearch"
,
table
);
}
static
struct
_actions
StandardActions
[]
=
{
{
szAllocateRegistrySpace
,
ACTION_AllocateRegistrySpace
},
{
szAppSearch
,
ACTION_AppSearch
},
{
szBindImage
,
ACTION_BindImage
},
{
szCCPSearch
,
NULL
},
{
szCCPSearch
,
ACTION_CCPSearch
},
{
szCostFinalize
,
ACTION_CostFinalize
},
{
szCostInitialize
,
ACTION_CostInitialize
},
{
szCreateFolders
,
ACTION_CreateFolders
},
...
...
@@ -4266,7 +4278,7 @@ static struct _actions StandardActions[] = {
{
szRemoveRegistryValues
,
NULL
},
{
szRemoveShortcuts
,
NULL
},
{
szResolveSource
,
ACTION_ResolveSource
},
{
szRMCCPSearch
,
NULL
},
{
szRMCCPSearch
,
ACTION_RMCCPSearch
},
{
szScheduleReboot
,
NULL
},
{
szSelfRegModules
,
ACTION_SelfRegModules
},
{
szSelfUnregModules
,
ACTION_SelfUnregModules
},
...
...
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