Author: akhaldi Date: Mon Jan 13 13:05:47 2014 New Revision: 61611
URL: http://svn.reactos.org/svn/reactos?rev=61611&view=rev Log: [EXPLORER_NEW] * Remove one time inclusions from the main header and put them back where they belong. * Cleanup the main header. CORE-7716
Modified: trunk/reactos/base/shell/explorer-new/explorer.c trunk/reactos/base/shell/explorer-new/precomp.h trunk/reactos/base/shell/explorer-new/tbsite.c
Modified: trunk/reactos/base/shell/explorer-new/explorer.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer-new/exp... ============================================================================== --- trunk/reactos/base/shell/explorer-new/explorer.c [iso-8859-1] (original) +++ trunk/reactos/base/shell/explorer-new/explorer.c [iso-8859-1] Mon Jan 13 13:05:47 2014 @@ -20,6 +20,8 @@
#include "precomp.h"
+#include <winver.h> + HINSTANCE hExplorerInstance; HMODULE hUser32; HANDLE hProcessHeap;
Modified: trunk/reactos/base/shell/explorer-new/precomp.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer-new/pre... ============================================================================== --- trunk/reactos/base/shell/explorer-new/precomp.h [iso-8859-1] (original) +++ trunk/reactos/base/shell/explorer-new/precomp.h [iso-8859-1] Mon Jan 13 13:05:47 2014 @@ -1,34 +1,31 @@ #ifndef _EXPLORER_PRECOMP__H_ #define _EXPLORER_PRECOMP__H_ -#define COBJMACROS + +#include <stdio.h> +#include <tchar.h>
#define WIN32_NO_STATUS #define _INC_WINDOWS #define COM_NO_WINDOWS_H -#include <stdarg.h> + +#define COBJMACROS + #include <windef.h> #include <winbase.h> #include <winreg.h> #include <wingdi.h> #include <winnls.h> -#include <winver.h> #include <wincon.h> #include <shellapi.h> #include <shlobj.h> #include <shlobj_undoc.h> #include <shlwapi.h> #include <shlguid_undoc.h> -#include <shdeprecated.h> -#include <tchar.h> -#include <stdio.h> #include <uxtheme.h>
#include "tmschema.h" #include "resource.h" #include "comcsup.h" -//#include "todo.h" -//#include "initguid.h" -#include "undoc.h"
/* dynamic imports due to lack of support in msvc linker libs */ typedef INT (APIENTRY *REGSHELLHOOK)(HWND, DWORD);
Modified: trunk/reactos/base/shell/explorer-new/tbsite.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer-new/tbs... ============================================================================== --- trunk/reactos/base/shell/explorer-new/tbsite.c [iso-8859-1] (original) +++ trunk/reactos/base/shell/explorer-new/tbsite.c [iso-8859-1] Mon Jan 13 13:05:47 2014 @@ -20,6 +20,10 @@
#include "precomp.h"
+#include <shdeprecated.h> + +#include "undoc.h" + /***************************************************************************** ** ITrayBandSite ************************************************************ *****************************************************************************/