mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 15:17:59 +00:00
msi: Stop vending WineMsiRemotePackage.
Since we return it from WineMsiRemoteCustomAction::GetActionInfo(). Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
62a84f6a3c
commit
d26336a944
2 changed files with 0 additions and 12 deletions
|
@ -167,7 +167,6 @@ static const IClassFactoryVtbl MsiCF_Vtbl =
|
|||
|
||||
static IClassFactoryImpl MsiServer_CF = { { &MsiCF_Vtbl }, create_msiserver };
|
||||
static IClassFactoryImpl WineMsiCustomRemote_CF = { { &MsiCF_Vtbl }, create_msi_custom_remote };
|
||||
static IClassFactoryImpl WineMsiRemotePackage_CF = { { &MsiCF_Vtbl }, create_msi_remote_package };
|
||||
|
||||
/******************************************************************
|
||||
* DllGetClassObject [MSI.@]
|
||||
|
@ -188,12 +187,6 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
if ( IsEqualCLSID (rclsid, &CLSID_WineMsiRemotePackage) )
|
||||
{
|
||||
*ppv = &WineMsiRemotePackage_CF;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
if( IsEqualCLSID (rclsid, &CLSID_MsiServerMessage) ||
|
||||
IsEqualCLSID (rclsid, &CLSID_MsiServer) ||
|
||||
IsEqualCLSID (rclsid, &CLSID_PSFactoryBuffer) ||
|
||||
|
|
|
@ -187,11 +187,6 @@ coclass MsiServerX3 { interface IMsiServer; }
|
|||
]
|
||||
coclass WineMsiRemoteCustomAction { interface WineMsiRemoteCustomAction; }
|
||||
|
||||
[
|
||||
uuid(902b3592-9d08-4dfd-a593-d07c52546421)
|
||||
]
|
||||
coclass WineMsiRemotePackage { interface WineMsiRemotePackage; }
|
||||
|
||||
[ uuid(000C1092-0000-0000-C000-000000000046), version(1.0) ]
|
||||
library WindowsInstaller
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue