mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
[WINESYNC] 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> wine commit id d26336a944e0b516e56dd69fa06543404402b45f by Zebediah Figura <z.figura12@gmail.com>
This commit is contained in:
parent
691a739b02
commit
a5f9ac3b85
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 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)
|
||||||
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; }
|
||||||
]
|
]
|
||||||
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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue