Module: wine Branch: refs/heads/master Commit: f24a9e2a2494427b7391c93e822d2a4a9be97789 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=f24a9e2a2494427b7391c93e...
Author: Mike McCormack mike@codeweavers.com Date: Sat Dec 31 13:14:23 2005 +0100
msi: Add stub actions for CCPSearch and RMCCPSearch.
---
dlls/msi/action.c | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/action.c b/dlls/msi/action.c index be2b686..5cb33c2 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -4210,11 +4210,23 @@ static UINT ACTION_UnregisterFonts( MSIP 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 },