Commit 6077ea69 authored by Alexandre Julliard's avatar Alexandre Julliard

gdiplus/tests: Use nameless unions/structs.

parent 207bdd01
......@@ -1787,7 +1787,7 @@ static void test_loadwmf(void)
expect(0, header.Y);
expect(320, header.Width);
expect(320, header.Height);
expect(1, U(header).WmfHeader.mtType);
expect(1, header.WmfHeader.mtType);
expect(0, header.EmfPlusHeaderSize);
expect(0, header.LogicalDpiX);
expect(0, header.LogicalDpiY);
......@@ -1845,7 +1845,7 @@ static void test_createfromwmf(void)
expect(0, header.Y);
expect(320, header.Width);
expect(320, header.Height);
expect(1, U(header).WmfHeader.mtType);
expect(1, header.WmfHeader.mtType);
expect(0, header.EmfPlusHeaderSize);
expect(0, header.LogicalDpiX);
expect(0, header.LogicalDpiY);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment