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

riched20/tests: Use better types than long.

parent 88f98165
...@@ -445,7 +445,7 @@ static int get_scroll_pos_y(HWND hwnd) ...@@ -445,7 +445,7 @@ static int get_scroll_pos_y(HWND hwnd)
return p.y; return p.y;
} }
static void move_cursor(HWND hwnd, long charindex) static void move_cursor(HWND hwnd, LONG charindex)
{ {
CHARRANGE cr; CHARRANGE cr;
cr.cpMax = charindex; cr.cpMax = charindex;
...@@ -4211,9 +4211,9 @@ static void test_EM_GETMODIFY(void) ...@@ -4211,9 +4211,9 @@ static void test_EM_GETMODIFY(void)
} }
struct exsetsel_s { struct exsetsel_s {
long min; LONG min;
long max; LONG max;
long expected_retval; LRESULT expected_retval;
int expected_getsel_start; int expected_getsel_start;
int expected_getsel_end; int expected_getsel_end;
int _getsel_todo_wine; int _getsel_todo_wine;
......
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