Karsten Hopp a42b70
To: vim-dev@vim.org
Karsten Hopp a42b70
Subject: Patch 7.2.323 (extra)
Karsten Hopp a42b70
Fcc: outbox
Karsten Hopp a42b70
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp a42b70
Mime-Version: 1.0
Karsten Hopp a42b70
Content-Type: text/plain; charset=UTF-8
Karsten Hopp a42b70
Content-Transfer-Encoding: 8bit
Karsten Hopp a42b70
------------
Karsten Hopp a42b70
Karsten Hopp a42b70
Patch 7.2.323 (extra)
Karsten Hopp a42b70
Problem:    Balloon evaluation crashes on Win64.
Karsten Hopp a42b70
Solution:   Change pointer types. (Sergey Khorev)
Karsten Hopp a42b70
Files:	    src/gui_w32.c
Karsten Hopp a42b70
Karsten Hopp a42b70
Karsten Hopp a42b70
*** ../vim-7.2.322/src/gui_w32.c	2009-01-28 21:22:20.000000000 +0100
Karsten Hopp a42b70
--- src/gui_w32.c	2009-12-24 16:06:41.000000000 +0100
Karsten Hopp a42b70
***************
Karsten Hopp a42b70
*** 212,223 ****
Karsten Hopp a42b70
      DWORD dwPlatformID;
Karsten Hopp a42b70
  } DLLVERSIONINFO;
Karsten Hopp a42b70
  
Karsten Hopp a42b70
  typedef struct tagTOOLINFOA_NEW
Karsten Hopp a42b70
  {
Karsten Hopp a42b70
  	UINT cbSize;
Karsten Hopp a42b70
  	UINT uFlags;
Karsten Hopp a42b70
  	HWND hwnd;
Karsten Hopp a42b70
! 	UINT uId;
Karsten Hopp a42b70
  	RECT rect;
Karsten Hopp a42b70
  	HINSTANCE hinst;
Karsten Hopp a42b70
  	LPSTR lpszText;
Karsten Hopp a42b70
--- 212,225 ----
Karsten Hopp a42b70
      DWORD dwPlatformID;
Karsten Hopp a42b70
  } DLLVERSIONINFO;
Karsten Hopp a42b70
  
Karsten Hopp a42b70
+ #include <poppack.h>
Karsten Hopp a42b70
+ 
Karsten Hopp a42b70
  typedef struct tagTOOLINFOA_NEW
Karsten Hopp a42b70
  {
Karsten Hopp a42b70
  	UINT cbSize;
Karsten Hopp a42b70
  	UINT uFlags;
Karsten Hopp a42b70
  	HWND hwnd;
Karsten Hopp a42b70
! 	UINT_PTR uId;
Karsten Hopp a42b70
  	RECT rect;
Karsten Hopp a42b70
  	HINSTANCE hinst;
Karsten Hopp a42b70
  	LPSTR lpszText;
Karsten Hopp a42b70
***************
Karsten Hopp a42b70
*** 227,241 ****
Karsten Hopp a42b70
  typedef struct tagNMTTDISPINFO_NEW
Karsten Hopp a42b70
  {
Karsten Hopp a42b70
      NMHDR      hdr;
Karsten Hopp a42b70
!     LPTSTR     lpszText;
Karsten Hopp a42b70
      char       szText[80];
Karsten Hopp a42b70
      HINSTANCE  hinst;
Karsten Hopp a42b70
      UINT       uFlags;
Karsten Hopp a42b70
      LPARAM     lParam;
Karsten Hopp a42b70
  } NMTTDISPINFO_NEW;
Karsten Hopp a42b70
  
Karsten Hopp a42b70
- #include <poppack.h>
Karsten Hopp a42b70
- 
Karsten Hopp a42b70
  typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
Karsten Hopp a42b70
  #ifndef TTM_SETMAXTIPWIDTH
Karsten Hopp a42b70
  # define TTM_SETMAXTIPWIDTH	(WM_USER+24)
Karsten Hopp a42b70
--- 229,241 ----
Karsten Hopp a42b70
  typedef struct tagNMTTDISPINFO_NEW
Karsten Hopp a42b70
  {
Karsten Hopp a42b70
      NMHDR      hdr;
Karsten Hopp a42b70
!     LPSTR      lpszText;
Karsten Hopp a42b70
      char       szText[80];
Karsten Hopp a42b70
      HINSTANCE  hinst;
Karsten Hopp a42b70
      UINT       uFlags;
Karsten Hopp a42b70
      LPARAM     lParam;
Karsten Hopp a42b70
  } NMTTDISPINFO_NEW;
Karsten Hopp a42b70
  
Karsten Hopp a42b70
  typedef HRESULT (WINAPI* DLLGETVERSIONPROC)(DLLVERSIONINFO *);
Karsten Hopp a42b70
  #ifndef TTM_SETMAXTIPWIDTH
Karsten Hopp a42b70
  # define TTM_SETMAXTIPWIDTH	(WM_USER+24)
Karsten Hopp a42b70
*** ../vim-7.2.322/src/version.c	2009-12-24 15:45:53.000000000 +0100
Karsten Hopp a42b70
--- src/version.c	2009-12-24 16:08:33.000000000 +0100
Karsten Hopp a42b70
***************
Karsten Hopp a42b70
*** 683,684 ****
Karsten Hopp a42b70
--- 683,686 ----
Karsten Hopp a42b70
  {   /* Add new patch number below this line */
Karsten Hopp a42b70
+ /**/
Karsten Hopp a42b70
+     323,
Karsten Hopp a42b70
  /**/
Karsten Hopp a42b70
Karsten Hopp a42b70
-- 
Karsten Hopp a42b70
hundred-and-one symptoms of being an internet addict:
Karsten Hopp a42b70
46. Your wife makes a new rule: "The computer cannot come to bed."
Karsten Hopp a42b70
Karsten Hopp a42b70
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp a42b70
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp a42b70
\\\        download, build and distribute -- http://www.A-A-P.org        ///
Karsten Hopp a42b70
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///