Commit e1ee7a3b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

fusion/tests: Fix compilation on systems that don't support nameless unions.

parent 0d0c4a35
...@@ -809,16 +809,16 @@ static void create_assembly(LPCSTR file) ...@@ -809,16 +809,16 @@ static void create_assembly(LPCSTR file)
DWORD written; DWORD written;
/* nameless unions initialized here */ /* nameless unions initialized here */
assembly.tableshdr.MaskValid.HighPart = 0x101; assembly.tableshdr.MaskValid.u.HighPart = 0x101;
assembly.tableshdr.MaskValid.LowPart = 0x00000005; assembly.tableshdr.MaskValid.u.LowPart = 0x00000005;
assembly.tableshdr.MaskSorted.HighPart = 0x1600; assembly.tableshdr.MaskSorted.u.HighPart = 0x1600;
assembly.tableshdr.MaskSorted.LowPart = 0x3301FA00; assembly.tableshdr.MaskSorted.u.LowPart = 0x3301FA00;
assembly.labelres.Name = 0x10; U1(assembly.labelres).Name = 0x10;
assembly.labelres.OffsetToData = 0x80000018; U2(assembly.labelres).OffsetToData = 0x80000018;
assembly.label11res.Name = 0x1; U1(assembly.label11res).Name = 0x1;
assembly.label11res.OffsetToData = 0x80000030; U2(assembly.label11res).OffsetToData = 0x80000030;
assembly.label10res.Name = 0x0; U1(assembly.label10res).Name = 0x0;
assembly.label10res.OffsetToData = 0x48; U2(assembly.label10res).OffsetToData = 0x48;
hfile = CreateFileA(file, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0); hfile = CreateFileA(file, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0);
......
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