BTNS_BUTTON

svn path=/trunk/; revision=5647
This commit is contained in:
Martin Fuchs 2003-08-18 13:07:50 +00:00
parent b2b074bf8c
commit aa7ecf8b2d
2 changed files with 6 additions and 2 deletions

View file

@ -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

View file

@ -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();}