[PATCH 1/2] include: Fix include arguments.

Andrey Gusev andrey.goosev at gmail.com
Fri Jul 8 16:55:07 CDT 2016


-------------- next part --------------
From d23b7163a734403d657419a35d9e5cb519b90dd9 Mon Sep 17 00:00:00 2001
Message-Id: <d23b7163a734403d657419a35d9e5cb519b90dd9.1468014688.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Sat, 9 Jul 2016 00:53:37 +0300
Subject: [PATCH 1/2] include: Fix include arguments.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 include/d3dtypes.h    | 2 +-
 include/d3dx9core.h   | 2 +-
 include/d3dx9effect.h | 2 +-
 include/d3dx9math.h   | 4 ++--
 include/d3dx9mesh.h   | 2 +-
 include/d3dx9tex.h    | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/include/d3dtypes.h b/include/d3dtypes.h
index 75aee55..aaa4539 100644
--- a/include/d3dtypes.h
+++ b/include/d3dtypes.h
@@ -344,7 +344,7 @@ typedef struct _D3DMATRIX {
 } D3DMATRIX, *LPD3DMATRIX;
 
 #if defined(__cplusplus) && defined(D3D_OVERLOADS)
-#include <d3dvec.inl>
+#include "d3dvec.inl"
 #endif
 
 typedef struct _D3DVIEWPORT {
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 <d3dx9.h>
+#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 <d3dx9.h>
+#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 <d3dx9.h>
+#include "d3dx9.h"
 
 #ifndef __D3DX9MATH_H__
 #define __D3DX9MATH_H__
@@ -469,6 +469,6 @@ HRESULT WINAPI D3DXCreateMatrixStack(DWORD flags, ID3DXMatrixStack **stack);
 }
 #endif
 
-#include <d3dx9math.inl>
+#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 <d3dx9.h>
+#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 <d3dx9.h>
+#include "d3dx9.h"
 
 #ifndef __WINE_D3DX9TEX_H
 #define __WINE_D3DX9TEX_H
-- 
2.5.5



More information about the wine-patches mailing list