Mike McCormack : msi: Add stub for the RegisterComPlus and UnregisterComPlus actions.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Mar 22 15:09:00 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 886036696afbed3167e2dda32f6ca98b63fb1c23
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=886036696afbed3167e2dda32f6ca98b63fb1c23

Author: Mike McCormack <mike at codeweavers.com>
Date:   Wed Mar 22 23:01:56 2006 +0900

msi: Add stub for the RegisterComPlus and UnregisterComPlus actions.

---

 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 6501031..66d75f9 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -4276,6 +4276,18 @@ static UINT ACTION_RMCCPSearch( MSIPACKA
     return msi_unimplemented_action_stub( package, "RMCCPSearch", table );
 }
 
+static UINT ACTION_RegisterComPlus( MSIPACKAGE *package )
+{
+    static const WCHAR table[] = { 'C','o','m','p','l','u','s',0 };
+    return msi_unimplemented_action_stub( package, "RegisterComPlus", table );
+}
+
+static UINT ACTION_UnregisterComPlus( MSIPACKAGE *package )
+{
+    static const WCHAR table[] = { 'C','o','m','p','l','u','s',0 };
+    return msi_unimplemented_action_stub( package, "UnregisterComPlus", table );
+}
+
 static struct _actions StandardActions[] = {
     { szAllocateRegistrySpace, ACTION_AllocateRegistrySpace },
     { szAppSearch, ACTION_AppSearch },
@@ -4314,7 +4326,7 @@ static struct _actions StandardActions[]
     { szPublishFeatures, ACTION_PublishFeatures },
     { szPublishProduct, ACTION_PublishProduct },
     { szRegisterClassInfo, ACTION_RegisterClassInfo },
-    { szRegisterComPlus, NULL},
+    { szRegisterComPlus, ACTION_RegisterComPlus},
     { szRegisterExtensionInfo, ACTION_RegisterExtensionInfo },
     { szRegisterFonts, ACTION_RegisterFonts },
     { szRegisterMIMEInfo, ACTION_RegisterMIMEInfo },
@@ -4342,7 +4354,7 @@ static struct _actions StandardActions[]
     { szUnpublishComponents, NULL},
     { szUnpublishFeatures, NULL},
     { szUnregisterClassInfo, NULL},
-    { szUnregisterComPlus, NULL},
+    { szUnregisterComPlus, ACTION_UnregisterComPlus},
     { szUnregisterExtensionInfo, NULL},
     { szUnregisterFonts, ACTION_UnregisterFonts },
     { szUnregisterMIMEInfo, NULL},




More information about the wine-cvs mailing list