[SERVICES]

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

svn path=/trunk/; revision=61960
This commit is contained in:
Amine Khaldi 2014-02-03 17:02:27 +00:00
parent 351f7fc14e
commit d0c50aeedf
3 changed files with 13 additions and 1 deletions

View file

@ -6,6 +6,9 @@
* COPYRIGHT: Copyright 2007 Andrew Greenwood
*/
#ifndef _AUDIOSRV_PCH_
#define _AUDIOSRV_PCH_
#include <stdarg.h>
#include <windef.h>
@ -64,3 +67,5 @@ StartSystemAudioServices(VOID);
void logmsg(char* string, ...);
#endif
#endif /* _AUDIOSRV_PCH_ */

View file

@ -6,7 +6,8 @@
* PROGRAMMERS: ReactOS Portable Systems Group
*/
#pragma once
#ifndef _SVCHOST_PCH_
#define _SVCHOST_PCH_
#define WIN32_NO_STATUS
#define WIN32_LEAN_AND_MEAN
@ -296,3 +297,4 @@ SvcRegisterStopCallback (
extern PSVCHOST_GLOBALS g_pSvchostSharedGlobals;
#endif /* _SVCHOST_PCH_ */

View file

@ -1,3 +1,6 @@
#ifndef _TCPSVCS_H
#define _TCPSVCS_H
#include <stdarg.h>
#define WIN32_NO_STATUS
@ -53,3 +56,5 @@ DWORD WINAPI DaytimeHandler(VOID* sock_);
DWORD WINAPI EchoHandler(VOID* sock_);
DWORD WINAPI DiscardHandler(VOID* sock_);
DWORD WINAPI QotdHandler(VOID* sock_);
#endif /* _TCPSVCS_H */