ole32/tests: win64 sets the lsb of the final DWORD in the ole private data header.
This commit is contained in:
parent
f9d48e7ba0
commit
d18875f306
|
@ -714,6 +714,11 @@ static void test_cf_dataobject(IDataObject *data)
|
|||
ok(priv->res2 == 1, "got %08x\n", priv->res2);
|
||||
ok(priv->count == count, "got %08x expected %08x\n", priv->count, count);
|
||||
ok(priv->res3[0] == 0, "got %08x\n", priv->res3[0]);
|
||||
|
||||
/* win64 sets the lsb */
|
||||
if(sizeof(fmt_ptr->fmt.ptd) == 8)
|
||||
todo_wine ok(priv->res3[1] == 1, "got %08x\n", priv->res3[1]);
|
||||
else
|
||||
ok(priv->res3[1] == 0, "got %08x\n", priv->res3[1]);
|
||||
|
||||
GlobalUnlock(h);
|
||||
|
|
Loading…
Reference in New Issue