Module: wine Branch: master Commit: 82d8fc3f1ef08328289fb608f540b0b1b849183f URL: http://source.winehq.org/git/wine.git/?a=commit;h=82d8fc3f1ef08328289fb608f5...
Author: Michael Stefaniuc mstefani@redhat.de Date: Sun Jan 4 11:28:42 2009 +0100
include: Use LONG instead of long in richedit.h.
---
include/richedit.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/richedit.h b/include/richedit.h index 02ebdc2..095cc8a 100644 --- a/include/richedit.h +++ b/include/richedit.h @@ -622,7 +622,7 @@ typedef enum tagKHYPH typedef struct hyphresult { KHYPH khyph; - long ichHyph; + LONG ichHyph; WCHAR chHyph; } HYPHRESULT;
@@ -630,7 +630,7 @@ typedef struct tagHyphenateInfo { SHORT cbSize; SHORT dxHyphenateZone; - void (WINAPI* pfnHyphenate)(WCHAR*, LANGID, long, HYPHRESULT*); + void (WINAPI* pfnHyphenate)(WCHAR*, LANGID, LONG, HYPHRESULT*); } HYPHENATEINFO;
typedef struct _msgfilter { @@ -712,7 +712,7 @@ typedef struct _imecomptext { DWORD flags; } IMECOMPTEXT;
-void WINAPI HyphenateProc(WCHAR*, LANGID, long, HYPHRESULT*); +void WINAPI HyphenateProc(WCHAR*, LANGID, LONG, HYPHRESULT*);
#define SF_TEXT 0x00000001 #define SF_RTF 0x00000002