From 4f10164f07233dc51fef74f03252ce7bebf8fb37 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Fri, 27 Sep 2002 22:45:20 +0000 Subject: [PATCH] Fixed nameless union/struct declaration. --- include/d3d8types.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/d3d8types.h b/include/d3d8types.h index b1c32a876e3..7284463a783 100644 --- a/include/d3d8types.h +++ b/include/d3d8types.h @@ -777,10 +777,9 @@ typedef struct _D3DMATRIX { float _21, _22, _23, _24; float _31, _32, _33, _34; float _41, _42, _43, _44; - - }; + } DUMMYSTRUCTNAME; float m[4][4]; - }; + } DUMMYUNIONNAME; } D3DMATRIX; typedef struct _D3DPRESENT_PARAMETERS_ {