From: Andrey Gusev Subject: include: Improve include directives in d3dx9* headers. Message-Id: Date: Fri, 22 Jul 2016 16:37:18 +0300 From 3490cc46549a7d4a6258ecbc89576dc043094df4 Mon Sep 17 00:00:00 2001 Message-Id: <3490cc46549a7d4a6258ecbc89576dc043094df4.1469194607.git.andrey.goosev@gmail.com> From: Andrey Gusev Date: Fri, 22 Jul 2016 16:36:24 +0300 Subject: [PATCH] include: Improve include directives in d3dx9* headers. Signed-off-by: Andrey Gusev --- include/d3dx9core.h | 2 +- include/d3dx9effect.h | 2 +- include/d3dx9math.h | 4 ++-- include/d3dx9mesh.h | 2 +- include/d3dx9tex.h | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/d3dx9core.h b/include/d3dx9core.h index 5233317..a04bced 100644 --- a/include/d3dx9core.h +++ b/include/d3dx9core.h @@ -16,7 +16,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include +#include "d3dx9.h" #ifndef __WINE_D3DX9CORE_H #define __WINE_D3DX9CORE_H diff --git a/include/d3dx9effect.h b/include/d3dx9effect.h index 3f527ed..8235794 100644 --- a/include/d3dx9effect.h +++ b/include/d3dx9effect.h @@ -16,7 +16,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include +#include "d3dx9.h" #ifndef __D3DX9EFFECT_H__ #define __D3DX9EFFECT_H__ diff --git a/include/d3dx9math.h b/include/d3dx9math.h index 2c41b73..bf03ca3 100644 --- a/include/d3dx9math.h +++ b/include/d3dx9math.h @@ -17,7 +17,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include +#include "d3dx9.h" #ifndef __D3DX9MATH_H__ #define __D3DX9MATH_H__ @@ -469,6 +469,6 @@ HRESULT WINAPI D3DXCreateMatrixStack(DWORD flags, ID3DXMatrixStack **stack); } #endif -#include +#include "d3dx9math.inl" #endif /* __D3DX9MATH_H__ */ diff --git a/include/d3dx9mesh.h b/include/d3dx9mesh.h index 47b0a3f..c9a2fd5 100644 --- a/include/d3dx9mesh.h +++ b/include/d3dx9mesh.h @@ -17,7 +17,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include +#include "d3dx9.h" #ifndef __WINE_D3DX9MESH_H #define __WINE_D3DX9MESH_H diff --git a/include/d3dx9tex.h b/include/d3dx9tex.h index 542460f..796a90d 100644 --- a/include/d3dx9tex.h +++ b/include/d3dx9tex.h @@ -16,7 +16,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#include +#include "d3dx9.h" #ifndef __WINE_D3DX9TEX_H #define __WINE_D3DX9TEX_H -- 2.5.5