From 79495fe5a95743a78c15922ca9aeef2c4b3e130c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 16 Jan 2004 02:02:19 +0000 Subject: [PATCH] We need to set _WIN32_WINNT to 0x501 to get CS_DROPSHADOW and ICON_SMALL2. --- dlls/user/tests/class.c | 3 +++ dlls/user/tests/win.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dlls/user/tests/class.c b/dlls/user/tests/class.c index 81ab8bdd01f..ebc4af22172 100644 --- a/dlls/user/tests/class.c +++ b/dlls/user/tests/class.c @@ -18,6 +18,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +/* To get CS_DROPSHADOW with the MSVC headers */ +#define _WIN32_WINNT 0x0501 + #include #include #include diff --git a/dlls/user/tests/win.c b/dlls/user/tests/win.c index e5f65a889df..deb3f75e9ba 100644 --- a/dlls/user/tests/win.c +++ b/dlls/user/tests/win.c @@ -20,6 +20,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +/* To get ICON_SMALL2 with the MSVC headers */ +#define _WIN32_WINNT 0x0501 + #include #include #include -- 2.11.4.GIT