[BROWSEUI]

* Do not make browseui an NT6 dll just because it has a missing include and it needs a few previously undocumented constants. We can just define them in an undoc header.

svn path=/trunk/; revision=65821
This commit is contained in:
David Quintana 2014-12-24 16:14:10 +00:00
parent 7afb72e9a2
commit 3b182d93b2
3 changed files with 8 additions and 3 deletions

View file

@ -2,9 +2,6 @@ PROJECT(SHELL)
set_cpp(WITH_RUNTIME) set_cpp(WITH_RUNTIME)
remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
include_directories(${REACTOS_SOURCE_DIR}/lib/atl) include_directories(${REACTOS_SOURCE_DIR}/lib/atl)
spec2def(browseui.dll browseui.spec ADD_IMPORTLIB) spec2def(browseui.dll browseui.spec ADD_IMPORTLIB)

View file

@ -10,6 +10,7 @@
#include <windef.h> #include <windef.h>
#include <winbase.h> #include <winbase.h>
#include <wincon.h> #include <wincon.h>
#include <wingdi.h>
#include <shlobj.h> #include <shlobj.h>
#include <tlogstg.h> #include <tlogstg.h>
#include <shlobj_undoc.h> #include <shlobj_undoc.h>

View file

@ -23,6 +23,13 @@
extern "C" { extern "C" {
#endif /* defined(__cplusplus) */ #endif /* defined(__cplusplus) */
#if (NTDDI_VERSION < NTDDI_LONGHORN)
#define DBIMF_NOGRIPPER 0x0800
#define DBIMF_ALWAYSGRIPPER 0x1000
#define DBIMF_NOMARGINS 0x2000
#endif // NTDDI_LONGHORN
/**************************************************************************** /****************************************************************************
* Taskbar WM_COMMAND identifiers * Taskbar WM_COMMAND identifiers
*/ */