Author: akhaldi Date: Tue Aug 23 19:37:31 2016 New Revision: 72448
URL: http://svn.reactos.org/svn/reactos?rev=72448&view=rev Log: [ACPPAGE] Improve header inclusions.
Modified: trunk/reactos/dll/shellext/acppage/ACPPage.cpp trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp trunk/reactos/dll/shellext/acppage/precomp.h
Modified: trunk/reactos/dll/shellext/acppage/ACPPage.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/ACPPag... ============================================================================== --- trunk/reactos/dll/shellext/acppage/ACPPage.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/acppage/ACPPage.cpp [iso-8859-1] Tue Aug 23 19:37:31 2016 @@ -17,6 +17,8 @@ */
#include "precomp.h" + +#include <shellutils.h>
HMODULE g_hModule = NULL; LONG g_ModuleRefCnt = 0;
Modified: trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/CLayer... ============================================================================== --- trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/acppage/CLayerUIPropPage.cpp [iso-8859-1] Tue Aug 23 19:37:31 2016 @@ -17,6 +17,11 @@ */
#include "precomp.h" + +#include <shlwapi.h> +#include <shellapi.h> +#include <strsafe.h> +#include <apphelp.h> #include <windowsx.h> #include <sfc.h>
Modified: trunk/reactos/dll/shellext/acppage/precomp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/shellext/acppage/precom... ============================================================================== --- trunk/reactos/dll/shellext/acppage/precomp.h [iso-8859-1] (original) +++ trunk/reactos/dll/shellext/acppage/precomp.h [iso-8859-1] Tue Aug 23 19:37:31 2016 @@ -1,8 +1,5 @@ #ifndef ACPPAGE_PRECOMP_H #define ACPPAGE_PRECOMP_H - -#include <stdarg.h> -#include <assert.h>
#define COBJMACROS #define WIN32_NO_STATUS @@ -10,25 +7,13 @@ #define COM_NO_WINDOWS_H #define NTOS_MODE_USER
-#include <windows.h> - #include <windef.h> #include <winbase.h> -#include <winreg.h> -#include <winuser.h> - #include <shlobj.h> -#include <shlwapi.h> -#include <shellapi.h> -#include <tchar.h> -#include <strsafe.h> #include <atlbase.h> #include <atlcom.h> -#include <atlwin.h> + ULONG DbgPrint(PCH Format,...); -#include <shellutils.h> -#include <prsht.h> -#include <apphelp.h>
extern const GUID CLSID_CLayerUIPropPage; extern HMODULE g_hModule;