mirror of
https://github.com/reactos/reactos.git
synced 2024-12-04 00:43:32 +08:00
[ITSS] Sync with Wine Staging 2.2. CORE-12823
4fdcc03 itss: Properly return interface pointers. svn path=/trunk/; revision=73952
This commit is contained in:
parent
13d03d3364
commit
508223165a
@ -63,7 +63,7 @@ ITSSCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj)
|
||||
IsEqualGUID(riid, &IID_IClassFactory))
|
||||
{
|
||||
IClassFactory_AddRef(iface);
|
||||
*ppobj = This;
|
||||
*ppobj = &This->IClassFactory_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
@ -87,7 +87,7 @@ static HRESULT WINAPI ITSS_IEnumSTATSTG_QueryInterface(
|
||||
|| IsEqualGUID(riid, &IID_IEnumSTATSTG))
|
||||
{
|
||||
IEnumSTATSTG_AddRef(iface);
|
||||
*ppvObject = This;
|
||||
*ppvObject = &This->IEnumSTATSTG_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@ -264,7 +264,7 @@ static HRESULT WINAPI ITSS_IStorageImpl_QueryInterface(
|
||||
|| IsEqualGUID(riid, &IID_IStorage))
|
||||
{
|
||||
IStorage_AddRef(iface);
|
||||
*ppvObject = This;
|
||||
*ppvObject = &This->IStorage_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@ -647,7 +647,7 @@ static HRESULT WINAPI ITSS_IStream_QueryInterface(
|
||||
|| IsEqualGUID(riid, &IID_IStream))
|
||||
{
|
||||
IStream_AddRef(iface);
|
||||
*ppvObject = This;
|
||||
*ppvObject = &This->IStream_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
|
@ -84,7 +84,7 @@ reactos/dll/win32/initpki # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/inseng # Synced to WineStaging-2.2
|
||||
reactos/dll/win32/iphlpapi # Out of sync
|
||||
reactos/dll/win32/itircl # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/itss # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/itss # Synced to WineStaging-2.2
|
||||
reactos/dll/win32/jscript # Synced to WineStaging-1.9.23
|
||||
reactos/dll/win32/jsproxy # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/loadperf # Synced to WineStaging-1.9.11
|
||||
|
Loading…
Reference in New Issue
Block a user