itss: Rename CLSID_ITSProtocol to CLSID_MSITStore.
ITSProtocol is a different object.
This commit is contained in:
parent
ab4822ec73
commit
e6fd4d42f0
@ -141,7 +141,7 @@ static const IClassFactoryVtbl ITSSCF_Vtbl =
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const IClassFactoryImpl ITStorage_factory = { &ITSSCF_Vtbl, ITSS_create };
|
static const IClassFactoryImpl ITStorage_factory = { &ITSSCF_Vtbl, ITSS_create };
|
||||||
static const IClassFactoryImpl ITSProtocol_factory = { &ITSSCF_Vtbl, ITS_IParseDisplayName_create };
|
static const IClassFactoryImpl MSITStore_factory = { &ITSSCF_Vtbl, ITS_IParseDisplayName_create };
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* DllGetClassObject (ITSS.@)
|
* DllGetClassObject (ITSS.@)
|
||||||
@ -154,8 +154,8 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
|
|||||||
|
|
||||||
if (IsEqualGUID(&CLSID_ITStorage, rclsid))
|
if (IsEqualGUID(&CLSID_ITStorage, rclsid))
|
||||||
factory = &ITStorage_factory;
|
factory = &ITStorage_factory;
|
||||||
else if (IsEqualGUID(&CLSID_ITSProtocol, rclsid))
|
else if (IsEqualGUID(&CLSID_MSITStore, rclsid))
|
||||||
factory = &ITSProtocol_factory;
|
factory = &MSITStore_factory;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FIXME("%s: no class found.\n", debugstr_guid(rclsid));
|
FIXME("%s: no class found.\n", debugstr_guid(rclsid));
|
||||||
|
@ -513,7 +513,7 @@ static struct regsvr_coclass const coclass_list[] = {
|
|||||||
"itss.dll",
|
"itss.dll",
|
||||||
"Both"
|
"Both"
|
||||||
},
|
},
|
||||||
{ &CLSID_ITSProtocol,
|
{ &CLSID_MSITStore,
|
||||||
"Microsoft InforTech Protocol for IE 3.0",
|
"Microsoft InforTech Protocol for IE 3.0",
|
||||||
NULL,
|
NULL,
|
||||||
"itss.dll",
|
"itss.dll",
|
||||||
|
@ -89,5 +89,5 @@ interface IITStorage : IUnknown
|
|||||||
[in] ECompactionLev iLev);
|
[in] ECompactionLev iLev);
|
||||||
}
|
}
|
||||||
|
|
||||||
cpp_quote("DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec );")
|
cpp_quote("DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec);")
|
||||||
cpp_quote("DEFINE_GUID(CLSID_ITSProtocol,0x9d148290,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);")
|
cpp_quote("DEFINE_GUID(CLSID_MSITStore,0x9d148290,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user