changeset 3314:2e4539dc2de7 v7.3.424

updated for version 7.3.424 Problem: Win16 version missing some functions. Solution: Add #defines for the functions.
author Bram Moolenaar <bram@vim.org>
date Sat, 04 Feb 2012 22:01:48 +0100
parents 10442177904a
children bd2542a2faa2
files src/gui_w16.c src/version.c
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/gui_w16.c
+++ b/src/gui_w16.c
@@ -21,6 +21,12 @@
  *
  */
 
+/* Win16 doesn't use the "W" methods. */
+#define pDispatchMessage DispatchMessage
+#define pGetMessage GetMessage
+#define pIsDialogMessage IsDialogMessage
+#define pPeekMessage PeekMessage
+
 /*
  * Include the common stuff for MS-Windows GUI.
  */
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    424,
+/**/
     423,
 /**/
     422,