mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
BTNS_BUTTON
svn path=/trunk/; revision=5647
This commit is contained in:
parent
b2b074bf8c
commit
aa7ecf8b2d
2 changed files with 6 additions and 2 deletions
|
@ -12,9 +12,9 @@ TARGET_APPTYPE = windows
|
|||
|
||||
TARGET_NAME = explorer
|
||||
|
||||
TARGET_CFLAGS = -fexceptions -O2 -DNDEBUG -DWIN32 -D_ROS_ -W
|
||||
TARGET_CFLAGS = -fexceptions -O2 -DNDEBUG -DWIN32 -D_ROS_ -W -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501
|
||||
|
||||
TARGET_RCFLAGS = -DNDEBUG -DWIN32 -D_ROS_
|
||||
TARGET_RCFLAGS = -DNDEBUG -DWIN32 -D_ROS_ -D_WIN32_IE=0x0501 -D_WIN32_WINNT=0x0501
|
||||
|
||||
ifdef UNICODE
|
||||
TARGET_CFLAGS += -DUNICODE
|
||||
|
|
|
@ -60,6 +60,10 @@
|
|||
#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
|
||||
#endif
|
||||
|
||||
#ifndef BTNS_BUTTON
|
||||
#define BTNS_BUTTON TBSTYLE_BUTTON
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define ASSERT(x) {if (!(x)) DebugBreak();}
|
||||
|
|
Loading…
Reference in a new issue