Biswapriyo Nath : include: Add include guard in d2dbasetypes.h.

Alexandre Julliard julliard at winehq.org
Fri Jun 5 14:16:52 CDT 2020


Module: wine
Branch: master
Commit: 9dcfc596718a4c8acafc1009b90263bba5141c05
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=9dcfc596718a4c8acafc1009b90263bba5141c05

Author: Biswapriyo Nath <nathbappai at gmail.com>
Date:   Fri Jun  5 12:57:09 2020 +0530

include: Add include guard in d2dbasetypes.h.

Signed-off-by: Biswapriyo Nath <nathbappai at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/d2dbasetypes.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/d2dbasetypes.h b/include/d2dbasetypes.h
index a160a89021..93c99fcceb 100644
--- a/include/d2dbasetypes.h
+++ b/include/d2dbasetypes.h
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _D2DBASETYPES_INCLUDED
+#define _D2DBASETYPES_INCLUDED
+
 #ifndef D3DCOLORVALUE_DEFINED
 typedef struct D3DCOLORVALUE
 {
@@ -56,3 +59,5 @@ typedef struct D2D_RECT_U
     UINT32 right;
     UINT32 bottom;
 } D2D_RECT_U;
+
+#endif /* _D2DBASETYPES_INCLUDED */




More information about the wine-cvs mailing list