Fix user/edit.c test compilation on Windows

Francois Gouget fgouget at codeweavers.com
Fri Feb 11 16:07:21 CST 2005


Changelog:

  * dlls/user/tests/edit.c

    Francois Gouget <fgouget at codeweavers.com>
    ES_COMBO is not defined in the Windows headers.
    So define it if necessary so the test can be compiled on Windows.

-- 
Francois Gouget
fgouget at codeweavers.com

-------------- next part --------------
Index: dlls/user/tests/edit.c
===================================================================
RCS file: /var/cvs/wine/dlls/user/tests/edit.c,v
retrieving revision 1.2
diff -u -p -r1.2 edit.c
--- dlls/user/tests/edit.c	28 Nov 2004 14:55:42 -0000	1.2
+++ dlls/user/tests/edit.c	11 Feb 2005 18:23:37 -0000
@@ -23,6 +23,11 @@
 
 #include "wine/test.h"
 
+#ifndef ES_COMBO
+#define ES_COMBO 0x200
+#endif
+
+
 HWND create_editcontrol (DWORD style, DWORD exstyle)
 {
     HWND handle;


More information about the wine-patches mailing list