From 41556170f231aa6ae6a5e227d8e030cf941817e0 Mon Sep 17 00:00:00 2001 From: Matteo Bruni Date: Fri, 27 Feb 2015 13:18:23 +0100 Subject: [PATCH] d3d9: Pack structures to 4-bytes alignment on x86. Reported by Christoph von Wittich. --- include/d3d9caps.h | 8 ++++++++ include/d3d9types.h | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/include/d3d9caps.h b/include/d3d9caps.h index 838e1f34761..5cc757b326f 100644 --- a/include/d3d9caps.h +++ b/include/d3d9caps.h @@ -20,6 +20,10 @@ #ifndef __WINE_D3D9CAPS_H #define __WINE_D3D9CAPS_H +#ifdef __i386__ +#include +#endif + /* * Definitions */ @@ -392,4 +396,8 @@ typedef struct _D3DCAPS9 { } D3DCAPS9; +#ifdef __i386__ +#include +#endif + #endif diff --git a/include/d3d9types.h b/include/d3d9types.h index fd7c4ce7487..3afcf89dbd9 100644 --- a/include/d3d9types.h +++ b/include/d3d9types.h @@ -21,6 +21,10 @@ #ifndef __WINE_D3D9TYPES_H #define __WINE_D3D9TYPES_H +#ifdef __i386__ +#include +#endif + /***************************************************************************** * Direct 3D v9 #defines */ @@ -1580,4 +1584,8 @@ typedef enum _D3DSHADER_COMPARISON D3DSPC_RESERVED1, } D3DSHADER_COMPARISON; +#ifdef __i386__ +#include +#endif + #endif /* __WINE_D3D9TYPES_H */