From 5f33f3f7cd4e8b11d6e525858d667eacae824c3a Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sun, 30 Oct 2005 19:36:29 +0000 Subject: [PATCH] Correct One struct svn path=/trunk/; revision=18892 --- reactos/w32api/include/d3dtypes.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/w32api/include/d3dtypes.h b/reactos/w32api/include/d3dtypes.h index 6670e71dbc9..cdc4b00c3f4 100644 --- a/reactos/w32api/include/d3dtypes.h +++ b/reactos/w32api/include/d3dtypes.h @@ -151,19 +151,19 @@ typedef struct _D3DCOLORVALUE { union { D3DVALUE r; D3DVALUE dvR; - } DUMMYUNIONNAME1; + }; union { D3DVALUE g; D3DVALUE dvG; - } DUMMYUNIONNAME2; + }; union { D3DVALUE b; D3DVALUE dvB; - } DUMMYUNIONNAME3; + }; union { D3DVALUE a; D3DVALUE dvA; - } DUMMYUNIONNAME4; + }; } D3DCOLORVALUE,*LPD3DCOLORVALUE; typedef struct _D3DRECT { -- 2.17.1