From 75fc891340daa7c9a06e8c41e545c13989410ce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Mon, 23 Mar 2015 21:33:35 +0100 Subject: [PATCH] include: Add more header guards. --- include/aviriff.h | 5 +++++ include/knownfolders.h | 5 +++++ include/rasdlg.h | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/include/aviriff.h b/include/aviriff.h index d2cfa41421a..9fea63a6f0e 100644 --- a/include/aviriff.h +++ b/include/aviriff.h @@ -17,6 +17,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#ifndef AVIRIFF_H +#define AVIRIFF_H + /* All definitions here are packed structures of on-disk formats */ #include @@ -322,3 +325,5 @@ typedef struct _avifieldindex_chunk { } AVIFIELDINDEX, * PAVIFIELDINDEX; #include + +#endif /* AVIRIFF_H */ diff --git a/include/knownfolders.h b/include/knownfolders.h index 2fa5664d8bc..28e867cb210 100644 --- a/include/knownfolders.h +++ b/include/knownfolders.h @@ -16,6 +16,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#ifndef __WINE_KNOWNFOLDERS_H +#define __WINE_KNOWNFOLDERS_H + #ifdef DEFINE_KNOWN_FOLDER #undef DEFINE_KNOWN_FOLDER #endif @@ -140,3 +143,5 @@ DEFINE_KNOWN_FOLDER(FOLDERID_UsersLibraries, 0xa302545d, 0xdeff, 0x464b, DEFINE_KNOWN_FOLDER(FOLDERID_Videos, 0x18989b1d, 0x99b5, 0x455b, 0x84, 0x1c, 0xab, 0x7c, 0x74, 0xe4, 0xdd, 0xfc); DEFINE_KNOWN_FOLDER(FOLDERID_VideosLibrary, 0x491e922f, 0x5643, 0x4af4, 0xa7, 0xeb, 0x4e, 0x7a, 0x13, 0x8d, 0x81, 0x74); DEFINE_KNOWN_FOLDER(FOLDERID_Windows, 0xf38bf404, 0x1d43, 0x42f2, 0x93, 0x05, 0x67, 0xde, 0x0b, 0x28, 0xfc, 0x23); + +#endif /* __WINE_KNOWNFOLDERS_H */ diff --git a/include/rasdlg.h b/include/rasdlg.h index 7f2a6d84145..6d2aa85c4cd 100644 --- a/include/rasdlg.h +++ b/include/rasdlg.h @@ -16,6 +16,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#ifndef _RASDLG_H_ +#define _RASDLG_H_ + #include typedef struct tagRASENTRYDLGW @@ -30,3 +33,5 @@ typedef struct tagRASENTRYDLGW ULONG_PTR reserved; ULONG_PTR reserved2; } RASENTRYDLGW; + +#endif /* _RASDLG_H_ */