msi [2/13]: Handle remote calls to MsiDoAction

James Hawkins truiken at gmail.com
Tue Jul 3 21:14:37 CDT 2007


Hi,

Changelog:
* Handle remote calls to MsiDoAction.

 dlls/msi/install.c     |   27 ++++++++++++++++++++++++++-
 dlls/msi/msiserver.idl |    1 +
 dlls/msi/package.c     |    8 ++++++++
 3 files changed, 35 insertions(+), 1 deletions(-)

-- 
James Hawkins
-------------- next part --------------
diff --git a/dlls/msi/install.c b/dlls/msi/install.c
index 91877e3..77e6756 100644
--- a/dlls/msi/install.c
+++ b/dlls/msi/install.c
@@ -20,6 +20,8 @@
 
 /* Msi top level apis directly related to installs */
 
+#define COBJMACROS
+
 #include <stdarg.h>
 
 #include "windef.h"
@@ -28,7 +30,9 @@ #include "winerror.h"
 #include "wine/debug.h"
 #include "msi.h"
 #include "msidefs.h"
+
 #include "msipriv.h"
+#include "msiserver.h"
 #include "wine/unicode.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(msi);
@@ -67,7 +71,28 @@ UINT WINAPI MsiDoActionW( MSIHANDLE hIns
 
     package = msihandle2msiinfo( hInstall, MSIHANDLETYPE_PACKAGE );
     if (!package)
-        return ERROR_INVALID_HANDLE;
+    {
+        HRESULT hr;
+        IWineMsiRemotePackage *remote_package;
+
+        remote_package = (IWineMsiRemotePackage *)msi_get_remote( hInstall );
+        if (!remote_package)
+            return ERROR_INVALID_HANDLE;
+
+        hr = IWineMsiRemotePackage_DoAction( remote_package, (BSTR *)szAction );
+
+        IWineMsiRemotePackage_Release( remote_package );
+
+        if (FAILED(hr))
+        {
+            if (HRESULT_FACILITY(hr) == FACILITY_WIN32)
+                return HRESULT_CODE(hr);
+
+            return ERROR_FUNCTION_FAILED;
+        }
+
+        return ERROR_SUCCESS;
+    }
  
     ret = ACTION_PerformUIAction( package, szAction, -1 );
     msiobj_release( &package->hdr );
diff --git a/dlls/msi/msiserver.idl b/dlls/msi/msiserver.idl
index 94b5636..df7449c 100644
--- a/dlls/msi/msiserver.idl
+++ b/dlls/msi/msiserver.idl
@@ -40,6 +40,7 @@ interface IWineMsiRemotePackage : IUnkno
     HRESULT GetProperty( [in] BSTR *property, [out] BSTR *value, [out] DWORD *size );
     HRESULT SetProperty( [in] BSTR *property, [in] BSTR *value );
     HRESULT ProcessMessage( [in] INSTALLMESSAGE message, [in] MSIHANDLE record );
+    HRESULT DoAction( [in] BSTR *action );
 }
 
 [
diff --git a/dlls/msi/package.c b/dlls/msi/package.c
index a81d6e5..153ea8c 100644
--- a/dlls/msi/package.c
+++ b/dlls/msi/package.c
@@ -1576,6 +1576,13 @@ HRESULT WINAPI mrp_ProcessMessage( IWine
     return HRESULT_FROM_WIN32(r);
 }
 
+HRESULT WINAPI mrp_DoAction( IWineMsiRemotePackage *iface, BSTR *action )
+{
+    msi_remote_package_impl* This = mrp_from_IWineMsiRemotePackage( iface );
+    UINT r = MsiDoActionW(This->package, (LPWSTR)action);
+    return HRESULT_FROM_WIN32(r);
+}
+
 static const IWineMsiRemotePackageVtbl msi_remote_package_vtbl =
 {
     mrp_QueryInterface,
@@ -1586,6 +1593,7 @@ static const IWineMsiRemotePackageVtbl m
     mrp_GetProperty,
     mrp_SetProperty,
     mrp_ProcessMessage,
+    mrp_DoAction,
 };
 
 HRESULT create_msi_remote_package( IUnknown *pOuter, LPVOID *ppObj )
-- 
1.4.1


More information about the wine-patches mailing list