riched20: Avoid using long.

This commit is contained in:
Michael Stefaniuc 2010-05-17 01:11:23 +02:00 committed by Alexandre Julliard
parent eb558c4403
commit cf13e8a390
3 changed files with 3 additions and 3 deletions

View file

@ -289,7 +289,7 @@ static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, ME_InStrea
TRACE("%08x %p\n", dwFormat, stream);
do {
long nWideChars = 0;
LONG nWideChars = 0;
if (!stream->dwSize)
{

View file

@ -1122,7 +1122,7 @@ struct _RTF_Info {
char *rtfTextBuf;
int rtfTextLen;
long rtfLineNum;
int rtfLineNum;
int rtfLinePos;

View file

@ -4318,7 +4318,7 @@ const struct exsetsel_s exsetsel_tests[] = {
static void check_EM_EXSETSEL(HWND hwnd, const struct exsetsel_s *setsel, int id) {
CHARRANGE cr;
long result;
LRESULT result;
int start, end;
cr.cpMin = setsel->min;