mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 09:12:56 +00:00
[SHLWAPI_WINETEST] Sync with Wine Staging 1.9.16. CORE-11866
svn path=/trunk/; revision=72308
This commit is contained in:
parent
4a513658de
commit
6da422d0ce
2 changed files with 5 additions and 2 deletions
|
@ -1015,7 +1015,8 @@ static HRESULT WINAPI Disp_Invoke(
|
||||||
EXCEPINFO *pExcepInfo,
|
EXCEPINFO *pExcepInfo,
|
||||||
UINT *puArgErr)
|
UINT *puArgErr)
|
||||||
{
|
{
|
||||||
trace("%p %x %p %x %x %p %p %p %p\n",This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr);
|
trace("%p %x %s %x %x %p %p %p %p\n", This, dispIdMember, wine_dbgstr_guid(riid), lcid, wFlags,
|
||||||
|
pDispParams, pVarResult, pExcepInfo, puArgErr);
|
||||||
|
|
||||||
ok(dispIdMember == 0xa0 || dispIdMember == 0xa1, "Unknown dispIdMember\n");
|
ok(dispIdMember == 0xa0 || dispIdMember == 0xa1, "Unknown dispIdMember\n");
|
||||||
ok(pDispParams != NULL, "Invoked with NULL pDispParams\n");
|
ok(pDispParams != NULL, "Invoked with NULL pDispParams\n");
|
||||||
|
@ -3243,7 +3244,9 @@ static void test_IUnknown_GetClassID(void)
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
|
|
||||||
if (0) /* crashes on native systems */
|
if (0) /* crashes on native systems */
|
||||||
|
{
|
||||||
hr = pIUnknown_GetClassID(NULL, NULL);
|
hr = pIUnknown_GetClassID(NULL, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
memset(&clsid, 0xcc, sizeof(clsid));
|
memset(&clsid, 0xcc, sizeof(clsid));
|
||||||
memset(&clsid3, 0xcc, sizeof(clsid3));
|
memset(&clsid3, 0xcc, sizeof(clsid3));
|
||||||
|
|
|
@ -57,7 +57,7 @@ static HRESULT WINAPI threadref_QueryInterface(IUnknown *iface, REFIID riid, LPV
|
||||||
{
|
{
|
||||||
threadref * This = impl_from_IUnknown(iface);
|
threadref * This = impl_from_IUnknown(iface);
|
||||||
|
|
||||||
trace("unexpected QueryInterface(%p, %p, %p) called\n", This, riid, ppvObj);
|
trace("unexpected QueryInterface(%p, %s, %p) called\n", This, wine_dbgstr_guid(riid), ppvObj);
|
||||||
*ppvObj = NULL;
|
*ppvObj = NULL;
|
||||||
return E_NOINTERFACE;
|
return E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue