Commit d26336a9 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

msi: Stop vending WineMsiRemotePackage.

Since we return it from WineMsiRemoteCustomAction::GetActionInfo(). Signed-off-by: 's avatarZebediah Figura <z.figura12@gmail.com> Signed-off-by: 's avatarHans Leidekker <hans@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 62a84f6a
...@@ -167,7 +167,6 @@ static const IClassFactoryVtbl MsiCF_Vtbl = ...@@ -167,7 +167,6 @@ static const IClassFactoryVtbl MsiCF_Vtbl =
static IClassFactoryImpl MsiServer_CF = { { &MsiCF_Vtbl }, create_msiserver }; static IClassFactoryImpl MsiServer_CF = { { &MsiCF_Vtbl }, create_msiserver };
static IClassFactoryImpl WineMsiCustomRemote_CF = { { &MsiCF_Vtbl }, create_msi_custom_remote }; static IClassFactoryImpl WineMsiCustomRemote_CF = { { &MsiCF_Vtbl }, create_msi_custom_remote };
static IClassFactoryImpl WineMsiRemotePackage_CF = { { &MsiCF_Vtbl }, create_msi_remote_package };
/****************************************************************** /******************************************************************
* DllGetClassObject [MSI.@] * DllGetClassObject [MSI.@]
...@@ -188,12 +187,6 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv) ...@@ -188,12 +187,6 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
return S_OK; return S_OK;
} }
if ( IsEqualCLSID (rclsid, &CLSID_WineMsiRemotePackage) )
{
*ppv = &WineMsiRemotePackage_CF;
return S_OK;
}
if( IsEqualCLSID (rclsid, &CLSID_MsiServerMessage) || if( IsEqualCLSID (rclsid, &CLSID_MsiServerMessage) ||
IsEqualCLSID (rclsid, &CLSID_MsiServer) || IsEqualCLSID (rclsid, &CLSID_MsiServer) ||
IsEqualCLSID (rclsid, &CLSID_PSFactoryBuffer) || IsEqualCLSID (rclsid, &CLSID_PSFactoryBuffer) ||
......
...@@ -187,11 +187,6 @@ coclass MsiServerX3 { interface IMsiServer; } ...@@ -187,11 +187,6 @@ coclass MsiServerX3 { interface IMsiServer; }
] ]
coclass WineMsiRemoteCustomAction { interface WineMsiRemoteCustomAction; } coclass WineMsiRemoteCustomAction { interface WineMsiRemoteCustomAction; }
[
uuid(902b3592-9d08-4dfd-a593-d07c52546421)
]
coclass WineMsiRemotePackage { interface WineMsiRemotePackage; }
[ uuid(000C1092-0000-0000-C000-000000000046), version(1.0) ] [ uuid(000C1092-0000-0000-C000-000000000046), version(1.0) ]
library WindowsInstaller library WindowsInstaller
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment