There's no need for DUMMYUNIONNAME in private headers.

oldstable
Alexandre Julliard 2004-01-08 05:27:23 +00:00
parent 201da3378d
commit 4e4460eaef
3 changed files with 7 additions and 7 deletions

View File

@ -304,9 +304,9 @@ typedef struct Direct3DVertexStridedData {
Direct3DStridedData diffuse;
Direct3DStridedData specular;
Direct3DStridedData texCoords[8];
} DUMMYSTRUCTNAME;
} s;
Direct3DStridedData input[16]; /* Indexed by constants in D3DVSDE_REGISTER */
} DUMMYUNIONNAME;
} u;
} Direct3DVertexStridedData;
#define USE_GL_FUNC(type, pfn) type pfn;

View File

@ -335,7 +335,7 @@ typedef struct {
union {
TW_UINT32 EOJ;
TW_UINT32 Reserved;
} DUMMYUNIONNAME;
} u;
} TW_PENDINGXFERS, FAR *pTW_PENDINGXFERS;
/* DAT_RGBRESPONSE */

View File

@ -330,11 +330,11 @@ typedef struct {
struct {
LONG lMinimum; /* signed minimum for this control */
LONG lMaximum; /* signed maximum for this control */
} DUMMYSTRUCTNAME;
} s;
struct {
DWORD dwMinimum; /* unsigned minimum for this control */
DWORD dwMaximum; /* unsigned maximum for this control */
} DUMMYSTRUCTNAME1;
} s1;
DWORD dwReserved[6];
} Bounds;
union {
@ -350,7 +350,7 @@ typedef struct {
union {
DWORD dwControlID; /* MIXER_GETLINECONTROLSF_ONEBYID */
DWORD dwControlType; /* MIXER_GETLINECONTROLSF_ONEBYTYPE */
} DUMMYUNIONNAME;
} u;
DWORD cControls; /* count of controls pmxctrl points to */
DWORD cbmxctrl; /* size in bytes of _one_ MIXERCONTROL */
SEGPTR pamxctrl; /* pointer to first MIXERCONTROL array */
@ -363,7 +363,7 @@ typedef struct {
union {
HWND16 hwndOwner; /* for MIXER_SETCONTROLDETAILSF_CUSTOM */
DWORD cMultipleItems; /* if _MULTIPLE, the number of items per channel */
} DUMMYUNIONNAME;
} u;
DWORD cbDetails; /* size of _one_ details_XX struct */
LPVOID paDetails; /* pointer to array of details_XX structs */
} MIXERCONTROLDETAILS16,*LPMIXERCONTROLDETAILS16;