mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[USETUP][EXPLORER][SERVICES]
* Add header guards to the main headers. CORE-7716 svn path=/trunk/; revision=61992
This commit is contained in:
parent
9fa1b9ab65
commit
f80fa18b56
3 changed files with 12 additions and 2 deletions
|
@ -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_ */
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue