From 44f2f5994ec8fce5050f950780e33831411b6cd0 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Thu, 23 Jan 2014 17:46:55 +0000 Subject: [PATCH] [LOCALSPL] * Remove one time resource.h inclusion from the main header and put it back where it belongs. CORE-7716 svn path=/trunk/; revision=61773 --- reactos/dll/win32/localspl/localmon.c | 2 ++ reactos/dll/win32/localspl/localspl_private.h | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/reactos/dll/win32/localspl/localmon.c b/reactos/dll/win32/localspl/localmon.c index 3e243bfcbdd..e78b6121fed 100644 --- a/reactos/dll/win32/localspl/localmon.c +++ b/reactos/dll/win32/localspl/localmon.c @@ -20,6 +20,8 @@ #include "localspl_private.h" +#include "resource.h" + /*****************************************************/ static CRITICAL_SECTION port_handles_cs; diff --git a/reactos/dll/win32/localspl/localspl_private.h b/reactos/dll/win32/localspl/localspl_private.h index 0fd85d32560..359b30b8dda 100644 --- a/reactos/dll/win32/localspl/localspl_private.h +++ b/reactos/dll/win32/localspl/localspl_private.h @@ -44,8 +44,6 @@ #include WINE_DEFAULT_DEBUG_CHANNEL(localspl); -#include "resource.h" - /* ## DLL-wide Globals ## */ extern HINSTANCE LOCALSPL_hInstance DECLSPEC_HIDDEN; void setup_provider(void) DECLSPEC_HIDDEN; @@ -88,5 +86,4 @@ static inline BOOL heap_free( void *mem ) return HeapFree( GetProcessHeap(), 0, mem ); } - #endif /* __WINE_LOCALSPL_PRIVATE__ */