mirror of
https://github.com/reactos/wine.git
synced 2025-01-24 04:45:18 +00:00
urlmon/tests: Replace some '#if 0's with 'if (0)'s.
Fix the code so it compiles without warnings.
This commit is contained in:
parent
f43b549081
commit
f96ddb27ac
@ -466,23 +466,25 @@ static HRESULT WINAPI statusclb_OnDataAvailable(IBindStatusCallback *iface, DWOR
|
||||
|
||||
CHECK_EXPECT2(OnDataAvailable);
|
||||
|
||||
#if 0 /* Uncomment after removing BindToStorage hack. */
|
||||
if (0)
|
||||
{
|
||||
/* FIXME: Uncomment after removing BindToStorage hack. */
|
||||
ok(pformatetc != NULL, "pformatetx == NULL\n");
|
||||
if(pformatetc) {
|
||||
ok(pformatetc->cfFormat == 0xc02d, "clipformat=%x\n", pformatetc->cfFormat);
|
||||
ok(pformatetc->ptd == NULL, "ptd = %p\n", pformatetc->ptd);
|
||||
ok(pformatetc->dwAspect == 1, "dwAspect=%ld\n", pformatetc->dwAspect);
|
||||
ok(pformatetc->lindex == -1, "lindex=%ld\n", pformatetc->lindex);
|
||||
ok(pformatetc->tymed == TYMED_ISTREAM, "tymed=%ld\n", pformatetc->tymed);
|
||||
ok(pformatetc->dwAspect == 1, "dwAspect=%u\n", pformatetc->dwAspect);
|
||||
ok(pformatetc->lindex == -1, "lindex=%d\n", pformatetc->lindex);
|
||||
ok(pformatetc->tymed == TYMED_ISTREAM, "tymed=%u\n", pformatetc->tymed);
|
||||
}
|
||||
|
||||
ok(pstgmed != NULL, "stgmeg == NULL\n");
|
||||
if(pstgmed) {
|
||||
ok(pstgmed->tymed == TYMED_ISTREAM, "tymed=%ld\n", pstgmed->tymed);
|
||||
ok(pstgmed->tymed == TYMED_ISTREAM, "tymed=%u\n", pstgmed->tymed);
|
||||
ok(U(*pstgmed).pstm != NULL, "pstm == NULL\n");
|
||||
ok(pstgmed->pUnkForRelease != NULL, "pUnkForRelease == NULL\n");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
if(U(*pstgmed).pstm) {
|
||||
do hres = IStream_Read(U(*pstgmed).pstm, buf, 512, &readed);
|
||||
|
Loading…
x
Reference in New Issue
Block a user