Commit cf13e8a3 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

riched20: Avoid using long.

parent eb558c44
......@@ -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)
{
......
......@@ -1122,7 +1122,7 @@ struct _RTF_Info {
char *rtfTextBuf;
int rtfTextLen;
long rtfLineNum;
int rtfLineNum;
int rtfLinePos;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment