Fixed nameless union/struct declaration.

This commit is contained in:
Alexandre Julliard 2002-09-27 22:45:20 +00:00
parent 7057110e98
commit 4f10164f07
1 changed files with 2 additions and 3 deletions

View File

@ -777,10 +777,9 @@ typedef struct _D3DMATRIX {
float _21, _22, _23, _24; float _21, _22, _23, _24;
float _31, _32, _33, _34; float _31, _32, _33, _34;
float _41, _42, _43, _44; float _41, _42, _43, _44;
} DUMMYSTRUCTNAME;
};
float m[4][4]; float m[4][4];
}; } DUMMYUNIONNAME;
} D3DMATRIX; } D3DMATRIX;
typedef struct _D3DPRESENT_PARAMETERS_ { typedef struct _D3DPRESENT_PARAMETERS_ {