Ken Takata wrote: > Hi Bram, > > 2016/6/2 Thu 3:31:57 UTC+9 Bram Moolenaar wrote: > > Patch 7.4.1863 > > Problem: Compiler warnings on Win64. > > Solution: Adjust types, add type casts. (Ken Takata) > > Files: src/if_mzsch.c, src/if_perl.xs, src/if_ruby.c, src/version.c > > Sorry, this patch was not enough. > Here is an additional fix: > > --- a/src/if_mzsch.c > +++ b/src/if_mzsch.c > @@ -849,7 +849,7 @@ static long range_end; > static int mz_threads_allow = 0; > > #if defined(FEAT_GUI_W32) > -static void CALLBACK timer_proc(HWND, UINT, UINT, DWORD); > +static void CALLBACK timer_proc(HWND, UINT, UINT_PTR, DWORD); > static UINT timer_id = 0; > #elif defined(FEAT_GUI_GTK) > # if GTK_CHECK_VERSION(3,0,0)
Thanks! -- My sister Cecilia opened a computer store in Hawaii. She sells C shells by the seashore. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
