[WIN32DLLS]
authorAmine Khaldi <amine.khaldi@reactos.org>
Fri, 7 Feb 2014 18:02:02 +0000 (18:02 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Fri, 7 Feb 2014 18:02:02 +0000 (18:02 +0000)
* Add header guards to the main headers.
CORE-7716

svn path=/trunk/; revision=62026

67 files changed:
reactos/dll/ntdll/include/ntdll.h
reactos/dll/opengl/opengl32/opengl32.h
reactos/dll/shellext/fontext/fontext.h
reactos/dll/win32/acledit/acledit.c
reactos/dll/win32/acledit/stubs.c
reactos/dll/win32/aclui/precomp.h
reactos/dll/win32/advpack/advpack_private.h
reactos/dll/win32/advpack/reg.c
reactos/dll/win32/authz/authz.c
reactos/dll/win32/authz/precomp.h
reactos/dll/win32/browseui/precomp.h
reactos/dll/win32/dbghelp/dbghelp_private.h
reactos/dll/win32/dnsapi/dnsapi/precomp.h
reactos/dll/win32/fmifs/precomp.h
reactos/dll/win32/hid/precomp.h
reactos/dll/win32/hlink/hlink_private.h
reactos/dll/win32/hnetcfg/hnetcfg_private.h
reactos/dll/win32/ieframe/ieframe.h
reactos/dll/win32/iphlpapi/iphlpapi_private.h
reactos/dll/win32/jscript/jscript.h
reactos/dll/win32/lpk/ros_lpk.h
reactos/dll/win32/lsasrv/lsasrv.h
reactos/dll/win32/mmdevapi/mmdevapi.h
reactos/dll/win32/mmdrv/auxil.c
reactos/dll/win32/mmdrv/midi.c
reactos/dll/win32/mmdrv/mmdrv.h
reactos/dll/win32/mmdrv/mmioctl.h
reactos/dll/win32/mmdrv/wave.c
reactos/dll/win32/mshtml/mshtml_private.h
reactos/dll/win32/msi/msipriv.h
reactos/dll/win32/msports/precomp.h
reactos/dll/win32/mswsock/precomp.h
reactos/dll/win32/objsel/objsel.c
reactos/dll/win32/objsel/objsel_private.h
reactos/dll/win32/ole32/enumx.h
reactos/dll/win32/ole32/storage32.h
reactos/dll/win32/propsys/propsys_private.h
reactos/dll/win32/rasadhlp/precomp.h
reactos/dll/win32/riched20/editor.h
reactos/dll/win32/samlib/precomp.h
reactos/dll/win32/samsrv/samsrv.h
reactos/dll/win32/schannel/precomp.h
reactos/dll/win32/secur32/precomp.h
reactos/dll/win32/setupapi/setupapi_private.h
reactos/dll/win32/shlwapi/precomp.h
reactos/dll/win32/smdll/precomp.h
reactos/dll/win32/spoolss/spoolss.h
reactos/dll/win32/sxs/sxs_private.h
reactos/dll/win32/syssetup/precomp.h
reactos/dll/win32/tapi32/precomp.h
reactos/dll/win32/twain_32/twain_i.h
reactos/dll/win32/userenv/precomp.h
reactos/dll/win32/usp10/usp10_internal.h
reactos/dll/win32/uxtheme/uxthemep.h
reactos/dll/win32/vbscript/vbscript.h
reactos/dll/win32/wbemdisp/wbemdisp_private.h
reactos/dll/win32/wbemprox/wbemprox_private.h
reactos/dll/win32/winmm/winemm.h
reactos/dll/win32/winsta/logon.c
reactos/dll/win32/winsta/main.c
reactos/dll/win32/winsta/misc.c
reactos/dll/win32/winsta/security.c
reactos/dll/win32/winsta/ws.c
reactos/dll/win32/wldap32/winldap_private.h
reactos/dll/win32/wldap32/wldap32.h
reactos/dll/win32/ws2_32_new/inc/ws2_32.h
reactos/dll/win32/wuapi/wuapi_private.h

index 1121c9f..a0e8f31 100644 (file)
@@ -6,6 +6,9 @@
  * PROGRAMMER:      Alex Ionescu (alex@relsoft.net)
  */
 
  * PROGRAMMER:      Alex Ionescu (alex@relsoft.net)
  */
 
+#ifndef _NTDLL_H
+#define _NTDLL_H
+
 /* INCLUDES ******************************************************************/
 
 /* We're a core NT DLL, we don't import syscalls */
 /* INCLUDES ******************************************************************/
 
 /* We're a core NT DLL, we don't import syscalls */
@@ -46,4 +49,4 @@
 /* PSEH */
 #include <pseh/pseh2.h>
 
 /* PSEH */
 #include <pseh/pseh2.h>
 
-/* EOF */
+#endif /* _NTDLL_H */
index 72862f6..ea2ea2c 100644 (file)
@@ -5,7 +5,8 @@
  * PURPOSE:              OpenGL32 lib, general header
  */
 
  * PURPOSE:              OpenGL32 lib, general header
  */
 
-#pragma once
+#ifndef _OPENGL32_PCH_
+#define _OPENGL32_PCH_
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
@@ -168,3 +169,5 @@ PROC sw_GetProcAddress(LPCSTR name);
 BOOL sw_CopyContext(DHGLRC dhglrcSrc, DHGLRC dhglrcDst, UINT mask);
 BOOL sw_ShareLists(DHGLRC dhglrcSrc, DHGLRC dhglrcDst);
 BOOL sw_SwapBuffers(HDC hdc, struct wgl_dc_data* dc_data);
 BOOL sw_CopyContext(DHGLRC dhglrcSrc, DHGLRC dhglrcDst, UINT mask);
 BOOL sw_ShareLists(DHGLRC dhglrcSrc, DHGLRC dhglrcDst);
 BOOL sw_SwapBuffers(HDC hdc, struct wgl_dc_data* dc_data);
+
+#endif /* _OPENGL32_PCH_ */
index 612b89e..aa9d564 100644 (file)
@@ -1,6 +1,11 @@
+#ifndef _FONTEXT_PCH_
+#define _FONTEXT_PCH_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #define COBJMACROS
 
 #include <windef.h>
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #define COBJMACROS
 
 #include <windef.h>
+
+#endif /* _FONTEXT_PCH_ */
index a7b98fc..737cd35 100644 (file)
@@ -33,7 +33,6 @@
 
 HINSTANCE hDllInstance;
 
 
 HINSTANCE hDllInstance;
 
-
 BOOL WINAPI
 DllMain(
        HINSTANCE hinstDLL,
 BOOL WINAPI
 DllMain(
        HINSTANCE hinstDLL,
index 7fe4713..4c71e76 100644 (file)
@@ -20,7 +20,6 @@ ULONG DbgPrint(PCH Format,...);
 #define UNIMPLEMENTED \
   DbgPrint("ACLEDIT:  %s at %s:%d is UNIMPLEMENTED!\n",__FUNCTION__,__FILE__,__LINE__)
 
 #define UNIMPLEMENTED \
   DbgPrint("ACLEDIT:  %s at %s:%d is UNIMPLEMENTED!\n",__FUNCTION__,__FILE__,__LINE__)
 
-
 DWORD
 WINAPI
 EditAuditInfo(DWORD Unknown)
 DWORD
 WINAPI
 EditAuditInfo(DWORD Unknown)
index 60529aa..d97a718 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _ACLUI_PCH_
+#define _ACLUI_PCH_
+
 #define _ACLUI_
 
 #include <stdarg.h>
 #define _ACLUI_
 
 #include <stdarg.h>
@@ -199,4 +202,4 @@ VOID
 DereferenceSidReqResult(IN HANDLE SidCacheMgr,
                         IN PSIDREQRESULT ReqResult);
 
 DereferenceSidReqResult(IN HANDLE SidCacheMgr,
                         IN PSIDREQRESULT ReqResult);
 
-/* EOF */
+#endif /* _ACLUI_PCH_ */
index ec0955e..f14853e 100644 (file)
@@ -34,9 +34,9 @@
 #include <winternl.h>
 #include <advpub.h>
 
 #include <winternl.h>
 #include <advpub.h>
 
+#include <wine/debug.h>
 #include <wine/unicode.h>
 
 #include <wine/unicode.h>
 
-#include <wine/debug.h>
 WINE_DEFAULT_DEBUG_CHANNEL(advpack);
 
 HRESULT do_ocx_reg(HMODULE hocx, BOOL do_reg, const WCHAR *flags, const WCHAR *param) DECLSPEC_HIDDEN;
 WINE_DEFAULT_DEBUG_CHANNEL(advpack);
 
 HRESULT do_ocx_reg(HMODULE hocx, BOOL do_reg, const WCHAR *flags, const WCHAR *param) DECLSPEC_HIDDEN;
index 39f42e3..2e46799 100644 (file)
@@ -18,7 +18,6 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
-
 #include "advpack_private.h"
 
 static const WCHAR REGINST[] = {'R','E','G','I','N','S','T',0};
 #include "advpack_private.h"
 
 static const WCHAR REGINST[] = {'R','E','G','I','N','S','T',0};
index f7f38f1..c7e323e 100644 (file)
@@ -33,7 +33,6 @@
 
 HINSTANCE hDllInstance;
 
 
 HINSTANCE hDllInstance;
 
-
 /*
  * @unimplemented
  */
 /*
  * @unimplemented
  */
index 90efbef..f3ec80b 100644 (file)
@@ -3,11 +3,12 @@
 
 #define _AUTHZ_
 
 
 #define _AUTHZ_
 
+#include <stdarg.h>
+
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 
-#include <stdarg.h>
 #include <windef.h>
 #include <winbase.h>
 
 #include <windef.h>
 #include <winbase.h>
 
@@ -60,4 +61,3 @@ typedef struct _AUTHZ_CLIENT_CONTEXT
 } AUTHZ_CLIENT_CONTEXT, *PAUTHZ_CLIENT_CONTEXT;
 
 #endif /* __AUTHZ_PRECOMP_H */
 } AUTHZ_CLIENT_CONTEXT, *PAUTHZ_CLIENT_CONTEXT;
 
 #endif /* __AUTHZ_PRECOMP_H */
-/* EOF */
index 6a83cb4..45880e3 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _BROWSEUI_PCH_
+#define _BROWSEUI_PCH_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -37,3 +40,5 @@
 #include "regtreeoptions.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(browseui);
 #include "regtreeoptions.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(browseui);
+
+#endif /* _BROWSEUI_PCH_ */
index de9fc63..a871293 100644 (file)
@@ -21,6 +21,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _DBGHELP_PRIVATE_H_
+#define _DBGHELP_PRIVATE_H_
+
 #include <config.h>
 
 #include <assert.h>
 #include <config.h>
 
 #include <assert.h>
@@ -842,3 +845,5 @@ extern struct symt_typedef*
                                      const char* name) DECLSPEC_HIDDEN;
 
 #include "image_private.h"
                                      const char* name) DECLSPEC_HIDDEN;
 
 #include "image_private.h"
+
+#endif /* _DBGHELP_PRIVATE_H_ */
index 1fb4f01..ee426cc 100644 (file)
@@ -6,6 +6,9 @@
  * PROGRAMMER:      Alex Ionescu (alex@relsoft.net)
  */
 
  * PROGRAMMER:      Alex Ionescu (alex@relsoft.net)
  */
 
+#ifndef _DNSAPI_H
+#define _DNSAPI_H
+
 /* INCLUDES ******************************************************************/
 
 #include <stdarg.h>
 /* INCLUDES ******************************************************************/
 
 #include <stdarg.h>
@@ -127,3 +130,5 @@ static inline LPSTR dns_strdup_ua( const char *src )
     }
     return dst;
 }
     }
     return dst;
 }
+
+#endif /* _DNSAPI_H */
index 9d203b7..e03812b 100644 (file)
@@ -8,6 +8,9 @@
  *                  Hervé Poussineau (hpoussin@reactos.org)
  */
 
  *                  Hervé Poussineau (hpoussin@reactos.org)
  */
 
+#ifndef _FMIFS_PCH_
+#define _FMIFS_PCH_
+
 /* INCLUDES ******************************************************************/
 
 #define WIN32_NO_STATUS
 /* INCLUDES ******************************************************************/
 
 #define WIN32_NO_STATUS
@@ -43,4 +46,4 @@ PIFS_PROVIDER
 GetProvider(
        IN PWCHAR FileSytem);
 
 GetProvider(
        IN PWCHAR FileSytem);
 
-/* EOF */
+#endif /* _FMIFS_PCH_ */
index 0f39db1..317b48b 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _HID_PCH_
+#define _HID_PCH_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -18,4 +21,4 @@ typedef VOID
 extern HINSTANCE hDllInstance;
 extern const GUID HidClassGuid;
 
 extern HINSTANCE hDllInstance;
 extern const GUID HidClassGuid;
 
-/* EOF */
+#endif /* _HID_PCH_ */
index d940a8f..b50744a 100644 (file)
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _HLINK_PRIVATE_H
+#define _HLINK_PRIVATE_H
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -82,3 +85,5 @@ static inline LPWSTR hlink_co_strdupW(LPCWSTR str)
 
     return ret;
 }
 
     return ret;
 }
+
+#endif /* _HLINK_PRIVATE_H */
index 726a549..d9f665c 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
-#include <config.h>
+#ifndef _HNETCFG_PRIVATE_H_
+#define _HNETCFG_PRIVATE_H_
+
+#include <wine/config.h>
 
 #include <stdarg.h>
 
 
 #include <stdarg.h>
 
@@ -53,3 +56,5 @@ HRESULT NetFwAuthorizedApplication_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
 HRESULT NetFwAuthorizedApplications_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
 HRESULT NetFwOpenPorts_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
 HRESULT NetFwServices_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
 HRESULT NetFwAuthorizedApplications_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
 HRESULT NetFwOpenPorts_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
 HRESULT NetFwServices_create(IUnknown *, LPVOID *) DECLSPEC_HIDDEN;
+
+#endif /* _HNETCFG_PRIVATE_H_ */
index e0afc62..bed94de 100644 (file)
@@ -18,6 +18,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _IEFRAME_H_
+#define _IEFRAME_H_
+
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
@@ -400,3 +403,5 @@ static inline LPSTR co_strdupWtoA(LPCWSTR str)
         WideCharToMultiByte(CP_ACP, 0, str, -1, ret, len, 0, 0);
     return ret;
 }
         WideCharToMultiByte(CP_ACP, 0, str, -1, ret, len, 0, 0);
     return ret;
 }
+
+#endif /* _IEFRAME_H_ */
index ac83ff0..42fef45 100644 (file)
@@ -172,4 +172,4 @@ BOOL WINAPI
 GetComputerNameExA(COMPUTER_NAME_FORMAT,LPSTR,LPDWORD);
 #endif
 
 GetComputerNameExA(COMPUTER_NAME_FORMAT,LPSTR,LPDWORD);
 #endif
 
-#endif/*IPPRIVATE_H*/
+#endif /* IPPRIVATE_H */
index 7d29493..0b1d447 100644 (file)
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _WINE_JSCRIPT_H
+#define _WINE_JSCRIPT_H
+
 #include <wine/config.h>
 #include <wine/port.h>
 
 #include <wine/config.h>
 #include <wine/port.h>
 
@@ -555,3 +558,5 @@ static inline void unlock_module(void)
 
 #include "engine.h"
 #include "regexp.h"
 
 #include "engine.h"
 #include "regexp.h"
+
+#endif /* _WINE_JSCRIPT_H */
index 5535e80..5c5a4c8 100644 (file)
@@ -6,6 +6,9 @@
  *
  */
 
  *
  */
 
+#ifndef _LPK_H
+#define _LPK_H
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -64,3 +67,5 @@ DWORD WINAPI LpkGetTextExtentExPoint(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x
 DWORD WINAPI LpkPSMTextOut(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6);
 DWORD WINAPI LpkUseGDIWidthCache(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5);
 DWORD WINAPI ftsWordBreak(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5);
 DWORD WINAPI LpkPSMTextOut(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5,DWORD x6);
 DWORD WINAPI LpkUseGDIWidthCache(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5);
 DWORD WINAPI ftsWordBreak(DWORD x1,DWORD x2,DWORD x3,DWORD x4,DWORD x5);
+
+#endif /* _LPK_H */
index fdf0807..46d7ab1 100644 (file)
@@ -7,6 +7,9 @@
  * PROGRAMMERS:     Eric Kohl
  */
 
  * PROGRAMMERS:     Eric Kohl
  */
 
+#ifndef _LSASRV_H
+#define _LSASRV_H
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -411,4 +414,4 @@ LsapAppendRidToSid(
     PSID SrcSid,
     ULONG Rid);
 
     PSID SrcSid,
     ULONG Rid);
 
-/* EOF */
+#endif /* _LSASRV_H */
index 07d9306..19b87ca 100644 (file)
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _MMDEVAPI_H_
+#define _MMDEVAPI_H_
+
 #include <wine/config.h>
 #include <wine/port.h>
 
 #include <wine/config.h>
 #include <wine/port.h>
 
@@ -97,3 +100,5 @@ extern HRESULT AudioClient_Create(MMDevice *parent, IAudioClient **ppv) DECLSPEC
 extern HRESULT AudioEndpointVolume_Create(MMDevice *parent, IAudioEndpointVolume **ppv) DECLSPEC_HIDDEN;
 
 extern const WCHAR drv_keyW[] DECLSPEC_HIDDEN;
 extern HRESULT AudioEndpointVolume_Create(MMDevice *parent, IAudioEndpointVolume **ppv) DECLSPEC_HIDDEN;
 
 extern const WCHAR drv_keyW[] DECLSPEC_HIDDEN;
+
+#endif /* _MMDEVAPI_H_ */
index b3a7f73..ecc872c 100644 (file)
@@ -9,13 +9,14 @@
  * UPDATE HISTORY:
  *                       Mar 16, 2004: Created skeleton implementation
  */
  * UPDATE HISTORY:
  *                       Mar 16, 2004: Created skeleton implementation
  */
-#include "mmdrv.h"
-#include "wave.h"
 
 
+#include "mmdrv.h"
 
 #define NDEBUG
 #include <debug.h>
 
 
 #define NDEBUG
 #include <debug.h>
 
+#include "wave.h"
+
 APIENTRY DWORD auxMessage(UINT dwId,
                   UINT uMessage,
                   DWORD dwUser,
 APIENTRY DWORD auxMessage(UINT dwId,
                   UINT uMessage,
                   DWORD dwUser,
index ac2299a..5364fb6 100644 (file)
  */
 
 #include "mmdrv.h"
  */
 
 #include "mmdrv.h"
-#include "wave.h"
 
 #define NDEBUG
 #include <debug.h>
 
 
 #define NDEBUG
 #include <debug.h>
 
+#include "wave.h"
+
 // MIDI device instance information
 //
 #define LOCAL_DATA_SIZE 20
 // MIDI device instance information
 //
 #define LOCAL_DATA_SIZE 20
index d88a8f5..a748e61 100644 (file)
@@ -17,7 +17,6 @@
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
-
 #include <windef.h>
 #include <winbase.h>
 #include <winioctl.h>
 #include <windef.h>
 #include <winbase.h>
 #include <winioctl.h>
@@ -337,4 +336,4 @@ PerformWaveIO(SessionInfo* session_info);
 
 extern CRITICAL_SECTION critical_section;
 
 
 extern CRITICAL_SECTION critical_section;
 
-#endif
+#endif /* MMDRV_H */
index 1337866..b62b3b0 100644 (file)
 #define IOCTL_SOUND_GET_CHANGED_VOLUME \
     CTL_CODE(IOCTL_SOUND_BASE, IOCTL_AUX_BASE + 0x0004, METHOD_BUFFERED, FILE_READ_ACCESS)
 
 #define IOCTL_SOUND_GET_CHANGED_VOLUME \
     CTL_CODE(IOCTL_SOUND_BASE, IOCTL_AUX_BASE + 0x0004, METHOD_BUFFERED, FILE_READ_ACCESS)
 
-#endif
+#endif /* MMDRV_IOCTLS */
index ae5b083..3186133 100644 (file)
@@ -17,7 +17,6 @@
 
 #define MAX_WAVE_BUFFER_SIZE    65536
 
 
 #define MAX_WAVE_BUFFER_SIZE    65536
 
-
 MMRESULT
 QueueWaveBuffer(
     SessionInfo* session_info,
 MMRESULT
 QueueWaveBuffer(
     SessionInfo* session_info,
index a1644ea..e07c1c1 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
-#include <config.h>
+#ifndef _MSHTML_PRIVATE_H_
+#define _MSHTML_PRIVATE_H_
+
+#include <wine/config.h>
 
 #include <assert.h>
 #include <stdarg.h>
 
 #include <assert.h>
 #include <stdarg.h>
 #include <wininet.h>
 #include <nsiface.h>
 
 #include <wininet.h>
 #include <nsiface.h>
 
+#include <wine/debug.h>
 #include <wine/list.h>
 #include <wine/unicode.h>
 
 #include <wine/list.h>
 #include <wine/unicode.h>
 
-#include <wine/debug.h>
 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
 
 #define NS_ERROR_GENERATE_FAILURE(module,code) \
 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
 
 #define NS_ERROR_GENERATE_FAILURE(module,code) \
@@ -1204,3 +1207,5 @@ extern HINSTANCE hInst DECLSPEC_HIDDEN;
 #include "htmlstyle.h"
 #include "pluginhost.h"
 #include "resource.h"
 #include "htmlstyle.h"
 #include "pluginhost.h"
 #include "resource.h"
+
+#endif /* _MSHTML_PRIVATE_H_ */
index 855086a..37c06ca 100644 (file)
 #ifndef __WINE_MSI_PRIVATE__
 #define __WINE_MSI_PRIVATE__
 
 #ifndef __WINE_MSI_PRIVATE__
 #define __WINE_MSI_PRIVATE__
 
-#include <config.h>
+#include <wine/config.h>
 
 
-#include <stdarg.h>
 #include <assert.h>
 #include <assert.h>
+#include <stdarg.h>
 
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
@@ -48,8 +48,8 @@
 #include <sddl.h>
 #include <msidefs.h>
 
 #include <sddl.h>
 #include <msidefs.h>
 
-#include <wine/list.h>
 #include <wine/debug.h>
 #include <wine/debug.h>
+#include <wine/list.h>
 #include <wine/unicode.h>
 
 static const BOOL is_64bit = sizeof(void *) > sizeof(int);
 #include <wine/unicode.h>
 
 static const BOOL is_64bit = sizeof(void *) > sizeof(int);
index e9f5d91..0b25e4d 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _MSPORTS_PCH_
+#define _MSPORTS_PCH_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -17,3 +20,5 @@
 #include "resource.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(msports);
 #include "resource.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(msports);
+
+#endif /* _MSPORTS_PCH_ */
index e2fddb5..ddf6caf 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _MSWSOCK_PCH_
+#define _MSWSOCK_PCH_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -6,3 +9,5 @@
 
 #include <windef.h>
 #include <winbase.h>
 
 #include <windef.h>
 #include <winbase.h>
+
+#endif /* _MSWSOCK_PCH_ */
index 15f2664..d2136e3 100644 (file)
@@ -19,6 +19,7 @@
  */
 
 #include "objsel_private.h"
  */
 
 #include "objsel_private.h"
+
 #include <rpcproxy.h>
 
 LONG dll_refs = 0;
 #include <rpcproxy.h>
 
 LONG dll_refs = 0;
index 845cd64..48e99d7 100644 (file)
@@ -18,6 +18,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _OBJSEL_PRIVATE_H
+#define _OBJSEL_PRIVATE_H
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -58,3 +61,5 @@ typedef struct
 HRESULT WINAPI OBJSEL_IDsObjectPicker_Create(LPVOID *ppvObj) DECLSPEC_HIDDEN;
 
 extern ClassFactoryImpl OBJSEL_ClassFactory DECLSPEC_HIDDEN;
 HRESULT WINAPI OBJSEL_IDsObjectPicker_Create(LPVOID *ppvObj) DECLSPEC_HIDDEN;
 
 extern ClassFactoryImpl OBJSEL_ClassFactory DECLSPEC_HIDDEN;
+
+#endif /* _OBJSEL_PRIVATE_H */
index da76e13..d4347d9 100644 (file)
@@ -31,4 +31,4 @@ extern HRESULT WINAPI enumx_Clone(enumx_impl *, enumx_impl **) DECLSPEC_HIDDEN;
 extern enumx_impl *enumx_allocate(REFIID, const void *, ULONG) DECLSPEC_HIDDEN;
 extern void *enumx_add_element(enumx_impl *, const void *) DECLSPEC_HIDDEN;
 
 extern enumx_impl *enumx_allocate(REFIID, const void *, ULONG) DECLSPEC_HIDDEN;
 extern void *enumx_add_element(enumx_impl *, const void *) DECLSPEC_HIDDEN;
 
-#endif
+#endif /* __OLE_ENUM_H__ */
index 0313e97..e8f1fb6 100644 (file)
@@ -27,6 +27,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
+
 #ifndef __STORAGE32_H__
 #define __STORAGE32_H__
 
 #ifndef __STORAGE32_H__
 #define __STORAGE32_H__
 
index 092c8ba..8cb748b 100644 (file)
@@ -18,6 +18,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _PROPSYS_PRIVATE_H_
+#define _PROPSYS_PRIVATE_H_
+
 #include <config.h>
 
 #include <stdarg.h>
 #include <config.h>
 
 #include <stdarg.h>
@@ -40,3 +43,5 @@
 WINE_DEFAULT_DEBUG_CHANNEL(propsys);
 
 HRESULT PropertyStore_CreateInstance(IUnknown *outer, REFIID riid, void **ppv) DECLSPEC_HIDDEN;
 WINE_DEFAULT_DEBUG_CHANNEL(propsys);
 
 HRESULT PropertyStore_CreateInstance(IUnknown *outer, REFIID riid, void **ppv) DECLSPEC_HIDDEN;
+
+#endif /* _PROPSYS_PRIVATE_H_ */
index 0d61664..05d3ed0 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _RASADHLP_H
+#define _RASADHLP_H
+
 #define _WIN32_WINNT 0x502
 #define _CRT_SECURE_NO_DEPRECATE
 #define WIN32_NO_STATUS
 #define _WIN32_WINNT 0x502
 #define _CRT_SECURE_NO_DEPRECATE
 #define WIN32_NO_STATUS
@@ -91,3 +94,4 @@ AcsHlpAttemptConnection(
     IN PAUTODIAL_ADDR ConnectionAddress
 );
 
     IN PAUTODIAL_ADDR ConnectionAddress
 );
 
+#endif /* _RASADHLP_H */
index d129a79..0521522 100644 (file)
@@ -18,6 +18,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _RICHED20_EDITOR_H
+#define _RICHED20_EDITOR_H
+
 #include <config.h>
 
 #include <assert.h>
 #include <config.h>
 
 #include <assert.h>
@@ -375,3 +378,5 @@ LRESULT ME_StreamOut(ME_TextEditor *editor, DWORD dwFormat, EDITSTREAM *stream)
 
 /* clipboard.c */
 HRESULT ME_GetDataObject(ME_TextEditor *editor, const ME_Cursor *start, int nChars, LPDATAOBJECT *lplpdataobj) DECLSPEC_HIDDEN;
 
 /* clipboard.c */
 HRESULT ME_GetDataObject(ME_TextEditor *editor, const ME_Cursor *start, int nChars, LPDATAOBJECT *lplpdataobj) DECLSPEC_HIDDEN;
+
+#endif /* _RICHED20_EDITOR_H */
index e2fddb5..7cab05c 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _SAMLIB_PCH_
+#define _SAMLIB_PCH_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -6,3 +9,5 @@
 
 #include <windef.h>
 #include <winbase.h>
 
 #include <windef.h>
 #include <winbase.h>
+
+#endif /* _SAMLIB_PCH_ */
index 36dd165..750957f 100644 (file)
@@ -7,6 +7,9 @@
  * PROGRAMMERS:     Eric Kohl
  */
 
  * PROGRAMMERS:     Eric Kohl
  */
 
+#ifndef _SAMSRV_PCH_
+#define _SAMSRV_PCH_
+
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <stdio.h>
 #include <stdlib.h>
 
@@ -430,3 +433,5 @@ NTSTATUS
 WINAPI
 SystemFunction007(PUNICODE_STRING string,
                   LPBYTE hash);
 WINAPI
 SystemFunction007(PUNICODE_STRING string,
                   LPBYTE hash);
+
+#endif /* _SAMSRV_PCH_ */
index 6aecb11..d9a7053 100644 (file)
@@ -3,10 +3,11 @@
 
 #include <stdarg.h>
 
 
 #include <stdarg.h>
 
-#include <ntstatus.h>
-#define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
+
+#include <ntstatus.h>
+#define WIN32_NO_STATUS
 #include <windef.h>
 #include <winbase.h>
 #include <sspi.h>
 #include <windef.h>
 #include <winbase.h>
 #include <sspi.h>
index 5752b76..427b1e0 100644 (file)
@@ -6,6 +6,9 @@
  * PROGRAMMER:      Alex Ionescu (alex@relsoft.net)
  */
 
  * PROGRAMMER:      Alex Ionescu (alex@relsoft.net)
  */
 
+#ifndef _SECUR32_PCH_
+#define _SECUR32_PCH_
+
 #include <stdarg.h>
 
 /* SDK/DDK/NDK Headers. */
 #include <stdarg.h>
 
 /* SDK/DDK/NDK Headers. */
@@ -19,3 +22,5 @@
 
 #include <secext.h>
 #include <security.h>
 
 #include <secext.h>
 #include <security.h>
+
+#endif /* _SECUR32_PCH_ */
index 1d15cac..53db948 100644 (file)
@@ -25,6 +25,7 @@
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
+
 #define COBJMACROS
 
 #include <windef.h>
 #define COBJMACROS
 
 #include <windef.h>
index d5fc111..90d50f7 100644 (file)
 #include <shlwapi.h>
 #include <shlobj.h>
 
 #include <shlwapi.h>
 #include <shlobj.h>
 
-#include <wine/unicode.h>
-
 #include <wine/debug.h>
 #include <wine/debug.h>
-WINE_DEFAULT_DEBUG_CHANNEL(shell);
+#include <wine/unicode.h>
 
 #include "resource.h"
 
 
 #include "resource.h"
 
+WINE_DEFAULT_DEBUG_CHANNEL(shell);
+
 #endif /* _SHLWAPI_PCH_ */
 #endif /* _SHLWAPI_PCH_ */
index ef73922..2caa290 100644 (file)
@@ -1,5 +1,10 @@
+#ifndef _SMDLL_PCH_
+#define _SMDLL_PCH_
+
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 
 #include <windef.h>
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 
 #include <windef.h>
+
+#endif /* _SMDLL_PCH_ */
index a56cba7..80fae4d 100644 (file)
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _SPOOLSS_H_
+#define _SPOOLSS_H_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -46,3 +49,5 @@ static inline BOOL heap_free( void *mem )
 {
     return HeapFree( GetProcessHeap(), 0, mem );
 }
 {
     return HeapFree( GetProcessHeap(), 0, mem );
 }
+
+#endif /* _SPOOLSS_H_ */
index dd2b2c3..7b33202 100644 (file)
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _SXS_PRIVATE_H_
+#define _SXS_PRIVATE_H_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -54,3 +57,5 @@ static inline WCHAR *strdupW( const WCHAR *src )
     if (dst) strcpyW( dst, src );
     return dst;
 }
     if (dst) strcpyW( dst, src );
     return dst;
 }
+
+#endif /* _SXS_PRIVATE_H_ */
index 79b5f48..18fdf66 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _SYSSETUP_PCH_
+#define _SYSSETUP_PCH_
+
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
@@ -17,3 +20,5 @@
 
 #include "globals.h"
 #include "resource.h"
 
 #include "globals.h"
 #include "resource.h"
+
+#endif /* _SYSSETUP_PCH_ */
index 297abf3..031a8ca 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef _TAPI32_PCH_
 #define _TAPI32_PCH_
 
 #ifndef _TAPI32_PCH_
 #define _TAPI32_PCH_
 
-#include <config.h>
+#include <wine/config.h>
 
 #include <stdarg.h>
 
 
 #include <stdarg.h>
 
index b426aa3..a170454 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef _TWAIN32_H
 #define _TWAIN32_H
 
 #ifndef _TWAIN32_H
 #define _TWAIN32_H
 
-#include <config.h>
+#include <wine/config.h>
 
 #include <stdarg.h>
 
 
 #include <stdarg.h>
 
@@ -67,4 +67,4 @@ extern TW_UINT16 TWAIN_OpenDSM
 extern TW_UINT16 TWAIN_GetDSMStatus
            (pTW_IDENTITY pOrigin, TW_MEMREF pData) DECLSPEC_HIDDEN;
 
 extern TW_UINT16 TWAIN_GetDSMStatus
            (pTW_IDENTITY pOrigin, TW_MEMREF pData) DECLSPEC_HIDDEN;
 
-#endif
+#endif /* _TWAIN32_H */
index 62b7c70..814688f 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _USERENV_PCH_
+#define _USERENV_PCH_
+
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
 #include <stdio.h>
 
 #define WIN32_NO_STATUS
@@ -14,3 +17,5 @@
 #include <userenv.h>
 
 #include "internal.h"
 #include <userenv.h>
 
 #include "internal.h"
+
+#endif /* _USERENV_PCH_ */
index 0196a2d..093acad 100644 (file)
@@ -19,6 +19,9 @@
  *
  */
 
  *
  */
 
+#ifndef _USP10_INTERNAL_H_
+#define _USP10_INTERNAL_H_
+
 #include <config.h>
 
 #include <stdarg.h>
 #include <config.h>
 
 #include <stdarg.h>
@@ -268,3 +271,5 @@ INT OpenType_apply_GPOS_lookup(ScriptCache *psc, LPOUTLINETEXTMETRICW lpotm, LPL
 HRESULT OpenType_GetFontScriptTags(ScriptCache *psc, OPENTYPE_TAG searchingFor, int cMaxTags, OPENTYPE_TAG *pScriptTags, int *pcTags) DECLSPEC_HIDDEN;
 HRESULT OpenType_GetFontLanguageTags(ScriptCache *psc, OPENTYPE_TAG script_tag, OPENTYPE_TAG searchingFor, int cMaxTags, OPENTYPE_TAG *pLanguageTags, int *pcTags) DECLSPEC_HIDDEN;
 HRESULT OpenType_GetFontFeatureTags(ScriptCache *psc, OPENTYPE_TAG script_tag, OPENTYPE_TAG language_tag, BOOL filtered, OPENTYPE_TAG searchingFor, char tableType, int cMaxTags, OPENTYPE_TAG *pFeatureTags, int *pcTags, LoadedFeature** feature) DECLSPEC_HIDDEN;
 HRESULT OpenType_GetFontScriptTags(ScriptCache *psc, OPENTYPE_TAG searchingFor, int cMaxTags, OPENTYPE_TAG *pScriptTags, int *pcTags) DECLSPEC_HIDDEN;
 HRESULT OpenType_GetFontLanguageTags(ScriptCache *psc, OPENTYPE_TAG script_tag, OPENTYPE_TAG searchingFor, int cMaxTags, OPENTYPE_TAG *pLanguageTags, int *pcTags) DECLSPEC_HIDDEN;
 HRESULT OpenType_GetFontFeatureTags(ScriptCache *psc, OPENTYPE_TAG script_tag, OPENTYPE_TAG language_tag, BOOL filtered, OPENTYPE_TAG searchingFor, char tableType, int cMaxTags, OPENTYPE_TAG *pFeatureTags, int *pcTags, LoadedFeature** feature) DECLSPEC_HIDDEN;
+
+#endif /* _USP10_INTERNAL_H_ */
index 320bb7f..e6eaa41 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef _UXTHEME_PCH_
+#define _UXTHEME_PCH_
+
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
 #include <stdarg.h>
 
 #define WIN32_NO_STATUS
@@ -230,3 +233,5 @@ BOOL CALLBACK UXTHEME_broadcast_msg (HWND hWnd, LPARAM msg);
 #define ALPHABLEND_BINARY           1
 /* Full alpha blending */
 #define ALPHABLEND_FULL             2
 #define ALPHABLEND_BINARY           1
 /* Full alpha blending */
 #define ALPHABLEND_FULL             2
+
+#endif /* _UXTHEME_PCH_ */
index 1f94db2..9ffe555 100644 (file)
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _VBSCRIPT_H
+#define _VBSCRIPT_H
+
 #include <assert.h>
 #include <stdarg.h>
 
 #include <assert.h>
 #include <stdarg.h>
 
@@ -418,3 +421,5 @@ static inline LPWSTR heap_strdupW(LPCWSTR str)
 #include "parse.h"
 #include "regexp.h"
 #include "vbscript_defs.h"
 #include "parse.h"
 #include "regexp.h"
 #include "vbscript_defs.h"
+
+#endif /* _VBSCRIPT_H */
index 4d30189..b7fbb53 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
-#include <config.h>
+#ifndef _WBEMDISP_PRIVATE_H_
+#define _WBEMDISP_PRIVATE_H_
+
+#include <wine/config.h>
 
 #include <stdarg.h>
 
 
 #include <stdarg.h>
 
@@ -46,3 +49,5 @@ static inline BOOL heap_free( void *mem )
 {
     return HeapFree( GetProcessHeap(), 0, mem );
 }
 {
     return HeapFree( GetProcessHeap(), 0, mem );
 }
+
+#endif /* _WBEMDISP_PRIVATE_H_ */
index 36120c4..6aee2da 100644 (file)
@@ -16,6 +16,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _WBEMPROX_PRIVATE_H_
+#define _WBEMPROX_PRIVATE_H_
+
 #include <config.h>
 
 #include <stdarg.h>
 #include <config.h>
 
 #include <stdarg.h>
@@ -331,3 +334,5 @@ static const WCHAR param_typesW[] = {'T','y','p','e','s',0};
 static const WCHAR param_userW[] = {'U','s','e','r',0};
 static const WCHAR param_valueW[] = {'s','V','a','l','u','e',0};
 static const WCHAR param_valuenameW[] = {'s','V','a','l','u','e','N','a','m','e',0};
 static const WCHAR param_userW[] = {'U','s','e','r',0};
 static const WCHAR param_valueW[] = {'s','V','a','l','u','e',0};
 static const WCHAR param_valuenameW[] = {'s','V','a','l','u','e','N','a','m','e',0};
+
+#endif /* _WBEMPROX_PRIVATE_H_ */
index 23351f8..fac668f 100644 (file)
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#ifndef _WINEMM_H_
+#define _WINEMM_H_
+
 #include <wine/config.h>
 
 #include <assert.h>
 #include <wine/config.h>
 
 #include <assert.h>
@@ -199,3 +202,5 @@ extern HANDLE psStopEvent;
     "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Drivers"
 
 INT LoadRegistryMMEDrivers(char* key);
     "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Drivers"
 
 INT LoadRegistryMMEDrivers(char* key);
+
+#endif /* _WINEMM_H_ */
index 421b77b..1ea47b7 100644 (file)
@@ -6,6 +6,7 @@
  * NOTES:           This file contains exported functions relevant to
  *                  userinit, winlogon, lsass and friends in vista.
  */
  * NOTES:           This file contains exported functions relevant to
  *                  userinit, winlogon, lsass and friends in vista.
  */
+
 #include "winsta.h"
 
 VOID
 #include "winsta.h"
 
 VOID
index 400129c..7d5f303 100644 (file)
@@ -23,6 +23,7 @@
  * PROGRAMMER:      Emanuele Aliberti <ea@reactos.com>
  *                  Samuel Serapi?n
  */
  * PROGRAMMER:      Emanuele Aliberti <ea@reactos.com>
  *                  Samuel Serapi?n
  */
+
 #include "winsta.h"
 
 HINSTANCE hDllInstance;
 #include "winsta.h"
 
 HINSTANCE hDllInstance;
index b3d2196..21bcfab 100644 (file)
@@ -6,6 +6,7 @@
  * NOTES:           Misc functions.
  * 
  */
  * NOTES:           Misc functions.
  * 
  */
+
 #include "winsta.h"
 
 VOID
 #include "winsta.h"
 
 VOID
index db30420..cbeab36 100644 (file)
@@ -5,6 +5,7 @@
  * PROGRAMMER:      Samuel Serapi?n
  * NOTE:            Not needed, just here for the show.
  */
  * PROGRAMMER:      Samuel Serapi?n
  * NOTE:            Not needed, just here for the show.
  */
+
 #include "winsta.h"
 
 VOID
 #include "winsta.h"
 
 VOID
index 32ed955..3b9fb15 100644 (file)
@@ -5,6 +5,7 @@
  * PROGRAMMER:      Samuel Serapi?n
  * 
  */
  * PROGRAMMER:      Samuel Serapi?n
  * 
  */
+
 #include "winsta.h"
 
 VOID
 #include "winsta.h"
 
 VOID
index 2442014..2da5611 100644 (file)
  * native headers.
  */
 
  * native headers.
  */
 
-#include <config.h>
+#ifndef _WINLDAP_PRIVATE_H_
+#define _WINLDAP_PRIVATE_H_
+
+#include <wine/config.h>
 
 #include <stdarg.h>
 
 
 #include <stdarg.h>
 
@@ -477,3 +480,5 @@ ULONG CDECL LdapGetLastError(void);
 ULONG CDECL LdapMapErrorToWin32(ULONG);
 int CDECL LdapUnicodeToUTF8(LPCWSTR,int,LPSTR,int);
 int CDECL LdapUTF8ToUnicode(LPCSTR,int,LPWSTR,int);
 ULONG CDECL LdapMapErrorToWin32(ULONG);
 int CDECL LdapUnicodeToUTF8(LPCWSTR,int,LPSTR,int);
 int CDECL LdapUTF8ToUnicode(LPCSTR,int,LPWSTR,int);
+
+#endif /* _WINLDAP_PRIVATE_H_ */
index 00a85a3..09aa9f2 100644 (file)
@@ -18,6 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#pragma once
+
 extern HINSTANCE hwldap32 DECLSPEC_HIDDEN;
 
 ULONG map_error( int ) DECLSPEC_HIDDEN;
 extern HINSTANCE hwldap32 DECLSPEC_HIDDEN;
 
 ULONG map_error( int ) DECLSPEC_HIDDEN;
index 90e50c6..0c11cf9 100644 (file)
@@ -5,6 +5,9 @@
  * PURPOSE:     WinSock 2.2 Main Header
  */
 
  * PURPOSE:     WinSock 2.2 Main Header
  */
 
+#ifndef _WS2_32_NEW_PCH_
+#define _WS2_32_NEW_PCH_
+
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
 #define WIN32_NO_STATUS
 #define _INC_WINDOWS
 #define COM_NO_WINDOWS_H
@@ -37,3 +40,5 @@
 
 /* Internal headers */
 #include "ws2_32p.h"
 
 /* Internal headers */
 #include "ws2_32p.h"
+
+#endif /* _WS2_32_NEW_PCH_ */
index 6e569a7..5b18dad 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
-#include <config.h>
+#ifndef _WUAPI_PRIVATE_H_
+#define _WUAPI_PRIVATE_H_
+
+#include <wine/config.h>
 
 #include <stdarg.h>
 
 
 #include <stdarg.h>
 
@@ -39,3 +42,5 @@ extern HRESULT UpdateSearcher_create( IUnknown *pUnkOuter, LPVOID *ppObj ) DECLS
 extern HRESULT UpdateDownloader_create( IUnknown *pUnkOuter, LPVOID *ppObj ) DECLSPEC_HIDDEN;
 extern HRESULT UpdateInstaller_create( IUnknown *pUnkOuter, LPVOID *ppObj ) DECLSPEC_HIDDEN;
 extern HRESULT SystemInformation_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
 extern HRESULT UpdateDownloader_create( IUnknown *pUnkOuter, LPVOID *ppObj ) DECLSPEC_HIDDEN;
 extern HRESULT UpdateInstaller_create( IUnknown *pUnkOuter, LPVOID *ppObj ) DECLSPEC_HIDDEN;
 extern HRESULT SystemInformation_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
+
+#endif /* _WUAPI_PRIVATE_H_ */