mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 23:29:42 +00:00
[SERVICES]
* Add header guards to the main headers. CORE-7716 svn path=/trunk/; revision=61960
This commit is contained in:
parent
351f7fc14e
commit
d0c50aeedf
3 changed files with 13 additions and 1 deletions
|
@ -6,6 +6,9 @@
|
||||||
* COPYRIGHT: Copyright 2007 Andrew Greenwood
|
* COPYRIGHT: Copyright 2007 Andrew Greenwood
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef _AUDIOSRV_PCH_
|
||||||
|
#define _AUDIOSRV_PCH_
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#include <windef.h>
|
#include <windef.h>
|
||||||
|
@ -64,3 +67,5 @@ StartSystemAudioServices(VOID);
|
||||||
void logmsg(char* string, ...);
|
void logmsg(char* string, ...);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif /* _AUDIOSRV_PCH_ */
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
* PROGRAMMERS: ReactOS Portable Systems Group
|
* PROGRAMMERS: ReactOS Portable Systems Group
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#ifndef _SVCHOST_PCH_
|
||||||
|
#define _SVCHOST_PCH_
|
||||||
|
|
||||||
#define WIN32_NO_STATUS
|
#define WIN32_NO_STATUS
|
||||||
#define WIN32_LEAN_AND_MEAN
|
#define WIN32_LEAN_AND_MEAN
|
||||||
|
@ -296,3 +297,4 @@ SvcRegisterStopCallback (
|
||||||
|
|
||||||
extern PSVCHOST_GLOBALS g_pSvchostSharedGlobals;
|
extern PSVCHOST_GLOBALS g_pSvchostSharedGlobals;
|
||||||
|
|
||||||
|
#endif /* _SVCHOST_PCH_ */
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
#ifndef _TCPSVCS_H
|
||||||
|
#define _TCPSVCS_H
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
#define WIN32_NO_STATUS
|
#define WIN32_NO_STATUS
|
||||||
|
@ -53,3 +56,5 @@ DWORD WINAPI DaytimeHandler(VOID* sock_);
|
||||||
DWORD WINAPI EchoHandler(VOID* sock_);
|
DWORD WINAPI EchoHandler(VOID* sock_);
|
||||||
DWORD WINAPI DiscardHandler(VOID* sock_);
|
DWORD WINAPI DiscardHandler(VOID* sock_);
|
||||||
DWORD WINAPI QotdHandler(VOID* sock_);
|
DWORD WINAPI QotdHandler(VOID* sock_);
|
||||||
|
|
||||||
|
#endif /* _TCPSVCS_H */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue