Mike McCormack : richedit: Fix prototype of the callback function.
Module: wine Branch: refs/heads/master Commit: ba8f40d4654bcf835572b0494111a16bfb322dd5 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=ba8f40d4654bcf835572b049... Author: Mike McCormack <mike(a)codeweavers.com> Date: Thu May 25 11:41:11 2006 +0900 richedit: Fix prototype of the callback function. --- include/richedit.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/richedit.h b/include/richedit.h index ecf3c98..9798fc6 100644 --- a/include/richedit.h +++ b/include/richedit.h @@ -159,7 +159,7 @@ #define EN_ALIGNLTR 0x0710 #define EN_ALIGNRTL 0x0711 -typedef DWORD (CALLBACK * EDITSTREAMCALLBACK)( DWORD, LPBYTE, LONG, LONG * ); +typedef DWORD (CALLBACK * EDITSTREAMCALLBACK)( DWORD_PTR, LPBYTE, LONG, LONG * ); /* tab stops number limit */ #define MAX_TAB_STOPS 0x00000020
participants (1)
-
Alexandre Julliard