Author: akhaldi
Date: Mon Jan 13 13:03:08 2014
New Revision: 61610
URL:
http://svn.reactos.org/svn/reactos?rev=61610&view=rev
Log:
[EXPLORER]
* Remove one time shlwapi.h inclusion from the main header and put them back where it
belongs.
* Cleanup the main header.
CORE-7716
Modified:
trunk/reactos/base/shell/explorer/explorer.cpp
trunk/reactos/base/shell/explorer/precomp.h
Modified: trunk/reactos/base/shell/explorer/explorer.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/explor…
==============================================================================
--- trunk/reactos/base/shell/explorer/explorer.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/explorer.cpp [iso-8859-1] Mon Jan 13 13:03:08 2014
@@ -30,6 +30,7 @@
#include <precomp.h> // <precomp.h> instead of "precomp.h"
because the ROS build system needs this to find the precompiled header file (*.gch) in the
output directory tree
+#include <shlwapi.h>
#include <locale.h> // for setlocale()
#ifndef __WINE__
Modified: trunk/reactos/base/shell/explorer/precomp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/precom…
==============================================================================
--- trunk/reactos/base/shell/explorer/precomp.h [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/precomp.h [iso-8859-1] Mon Jan 13 13:03:08 2014
@@ -28,10 +28,12 @@
#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES_COUNT 1
+#include <stdarg.h>
+
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
-#include <stdarg.h>
+
#include <windef.h>
#include <winbase.h>
#include <winreg.h>
@@ -39,7 +41,6 @@
#include <winnls.h>
#include <wincon.h>
#include <ole2.h>
-#include <shlwapi.h>
#include "utility/utility.h"