[USETUP][EXPLORER][SERVICES]
authorAmine Khaldi <amine.khaldi@reactos.org>
Wed, 5 Feb 2014 16:35:49 +0000 (16:35 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Wed, 5 Feb 2014 16:35:49 +0000 (16:35 +0000)
* Add header guards to the main headers.
CORE-7716

svn path=/trunk/; revision=61992

reactos/base/setup/usetup/usetup.h
reactos/base/shell/explorer/precomp.h
reactos/base/system/services/services.h

index 893e520..2dfb99b 100644 (file)
@@ -24,6 +24,9 @@
  * PROGRAMMER:      Eric Kohl
  */
 
  * PROGRAMMER:      Eric Kohl
  */
 
+#ifndef _USETUP_PCH_
+#define _USETUP_PCH_
+
 /* C Headers */
 #include <stdio.h>
 #include <stdlib.h>
 /* C Headers */
 #include <stdio.h>
 #include <stdlib.h>
@@ -172,4 +175,4 @@ typedef enum _PAGE_NUMBER
   InsertTailList(current, &((NewEntry)->ListEntryField));\
 }
 
   InsertTailList(current, &((NewEntry)->ListEntryField));\
 }
 
-/* EOF */
+#endif /* _USETUP_PCH_ */
index cb8b740..831e8f9 100644 (file)
@@ -16,6 +16,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#ifndef _EXPLORER_H
+#define _EXPLORER_H
 
  //
  // Explorer clone - precompiled header support
 
  //
  // Explorer clone - precompiled header support
@@ -51,3 +53,5 @@
 #include "externals.h"
 
 #include "resource.h"
 #include "externals.h"
 
 #include "resource.h"
+
+#endif /* _EXPLORER_H */
index 01a04c4..2eac817 100644 (file)
@@ -2,6 +2,9 @@
  * services.h
  */
 
  * services.h
  */
 
+#ifndef _SERVICES_H
+#define _SERVICES_H
+
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
@@ -192,4 +195,4 @@ VOID ScmLogError(DWORD dwEventId,
                  LPCWSTR *lpStrings);
 VOID ScmWaitForLsa(VOID);
 
                  LPCWSTR *lpStrings);
 VOID ScmWaitForLsa(VOID);
 
-/* EOF */
+#endif /* _SERVICES_H */