Fix compilation of user/tests/msg.c on Windows

Francois Gouget fgouget at free.fr
Fri Oct 22 11:39:20 CDT 2004


Changelog:

  * dlls/user/tests/msg.c

    VK_N is not defined in the Windows SDK.


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
      We are Pentium of Borg. You will be approximated. Division is futile.
-------------- next part --------------
Index: dlls/user/tests/msg.c
===================================================================
RCS file: /var/cvs/wine/dlls/user/tests/msg.c,v
retrieving revision 1.49
diff -u -r1.49 msg.c
--- dlls/user/tests/msg.c	11 Oct 2004 19:55:28 -0000	1.49
+++ dlls/user/tests/msg.c	22 Oct 2004 12:18:57 -0000
@@ -3028,6 +3028,9 @@
     CloseHandle(hThread);
 }
 
+#ifndef VK_N
+#define VK_N 0x4e
+#endif
 
 static const struct message WmVkN[] = {
     { WM_KEYDOWN, wparam|lparam, VK_N, 1 },


More information about the wine-patches mailing list