mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[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:
parent
7afb72e9a2
commit
3b182d93b2
3 changed files with 8 additions and 3 deletions
|
@ -2,9 +2,6 @@ PROJECT(SHELL)
|
|||
|
||||
set_cpp(WITH_RUNTIME)
|
||||
|
||||
remove_definitions(-D_WIN32_WINNT=0x502)
|
||||
add_definitions(-D_WIN32_WINNT=0x600)
|
||||
|
||||
include_directories(${REACTOS_SOURCE_DIR}/lib/atl)
|
||||
spec2def(browseui.dll browseui.spec ADD_IMPORTLIB)
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <wincon.h>
|
||||
#include <wingdi.h>
|
||||
#include <shlobj.h>
|
||||
#include <tlogstg.h>
|
||||
#include <shlobj_undoc.h>
|
||||
|
|
|
@ -23,6 +23,13 @@
|
|||
extern "C" {
|
||||
#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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue