[USETUP][EXPLORER][SERVICES]

* Add header guards to the main headers.
CORE-7716

svn path=/trunk/; revision=61992
This commit is contained in:
Amine Khaldi 2014-02-05 16:35:49 +00:00
parent 9fa1b9ab65
commit f80fa18b56
3 changed files with 12 additions and 2 deletions

View file

@ -24,6 +24,9 @@
* PROGRAMMER: Eric Kohl
*/
#ifndef _USETUP_PCH_
#define _USETUP_PCH_
/* C Headers */
#include <stdio.h>
#include <stdlib.h>
@ -172,4 +175,4 @@ typedef enum _PAGE_NUMBER
InsertTailList(current, &((NewEntry)->ListEntryField));\
}
/* EOF */
#endif /* _USETUP_PCH_ */

View file

@ -16,6 +16,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _EXPLORER_H
#define _EXPLORER_H
//
// Explorer clone - precompiled header support
@ -51,3 +53,5 @@
#include "externals.h"
#include "resource.h"
#endif /* _EXPLORER_H */

View file

@ -2,6 +2,9 @@
* services.h
*/
#ifndef _SERVICES_H
#define _SERVICES_H
#include <stdio.h>
#define WIN32_NO_STATUS
@ -192,4 +195,4 @@ VOID ScmLogError(DWORD dwEventId,
LPCWSTR *lpStrings);
VOID ScmWaitForLsa(VOID);
/* EOF */
#endif /* _SERVICES_H */