# HG changeset patch # User Bram Moolenaar # Date 1328389308 -3600 # Node ID 2e4539dc2de7da0aed83286304d1afeb0a4cdb3d # Parent 10442177904a829cc9163616ee824d81bce0ee5d updated for version 7.3.424 Problem: Win16 version missing some functions. Solution: Add #defines for the functions. diff --git a/src/gui_w16.c b/src/gui_w16.c --- 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. */ diff --git a/src/version.c b/src/version.c --- 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,