* msdos.c (mouse_get_pos): Likewise.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 14 May 2011 19:06:08 +0000 (12:06 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 14 May 2011 19:06:08 +0000 (12:06 -0700)
* w32inevt.c (movement_time, w32_console_mouse_position): Likewise.

src/ChangeLog
src/msdos.c
src/w32inevt.c

index dca9a17..84575a8 100644 (file)
@@ -3,6 +3,8 @@
        Fixups, following up to the user-interface timestamp change.
        * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
        for UI timestamps, instead of unsigned long.
+       * msdos.c (mouse_get_pos): Likewise.
+       * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
        * w32gui.h (Time): Define by including "systime.h" rather than by
        declaring it ourselves.  (Bug#8664)
 
index 3dc586e..73804df 100644 (file)
@@ -287,7 +287,7 @@ mouse_button_depressed (int b, int *xp, int *yp)
 void
 mouse_get_pos (FRAME_PTR *f, int insist, Lisp_Object *bar_window,
               enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y,
-              unsigned long *time)
+              Time *time)
 {
   int ix, iy;
   Lisp_Object frame, tail;
index 465f5cc..fddde61 100644 (file)
@@ -45,7 +45,7 @@ extern HANDLE keyboard_handle;
 
 /* Info for last mouse motion */
 static COORD movement_pos;
-static DWORD movement_time;
+static Time movement_time;
 
 /* from w32fns.c */
 extern unsigned int map_keypad_keys (unsigned int, unsigned int);
@@ -544,7 +544,7 @@ w32_console_mouse_position (FRAME_PTR *f,
                            enum scroll_bar_part *part,
                            Lisp_Object *x,
                            Lisp_Object *y,
-                           unsigned long *time)
+                           Time *time)
 {
   BLOCK_INPUT;
 
@@ -756,4 +756,3 @@ w32_console_read_socket (struct terminal *terminal,
   UNBLOCK_INPUT;
   return ret;
 }
-