diff options
author | Eli Zaretskii <eliz@gnu.org> | 2014-09-24 13:06:53 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2014-09-24 13:06:53 +0300 |
commit | d4dfe4ea85328f7afd288cd43e141430db33e4e8 (patch) | |
tree | d3091cc82bfc7270cba859e6ea7e693a1a8391c1 /src/w32inevt.h | |
parent | 4b930ccbb4fc4b848f318e09eddd172c2acf9b9b (diff) | |
download | emacs-d4dfe4ea85328f7afd288cd43e141430db33e4e8.tar.gz |
Fix fallout on MinGW64 from the previous commit.
src/systime.h (Time): Define as size_t, to be consistent with 64-bit
Windows builds, where 'long' is a 32-bit type.
src/w32inevt.h (w32_console_mouse_position): Update the argument
types to use 'Time'.
src/w32term.c (w32_mouse_position)
(x_horizontal_scroll_bar_report_motion)
(x_scroll_bar_report_motion): Update the argument types to use
'Time'.
Diffstat (limited to 'src/w32inevt.h')
-rw-r--r-- | src/w32inevt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32inevt.h b/src/w32inevt.h index 9117453e721..c4836211bc9 100644 --- a/src/w32inevt.h +++ b/src/w32inevt.h @@ -27,6 +27,6 @@ extern void w32_console_mouse_position (struct frame **f, int insist, Lisp_Object *bar_window, enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, - unsigned long *time); + Time *time); #endif /* EMACS_W32INEVT_H */ |