aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/w32term.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/w32term.c b/src/w32term.c
index 2900acf7f0a..1c4e6803906 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -73,6 +73,11 @@ Lisp_Object Vx_toolkit_scroll_bars;
73static int last_mousemove_x = 0; 73static int last_mousemove_x = 0;
74static int last_mousemove_y = 0; 74static int last_mousemove_y = 0;
75 75
76/* Define GET_WHEEL_DELTA_WPARAM macro if system headers don't. */
77#ifndef GET_WHEEL_DELTA_WPARAM
78#define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD (wparam))
79#endif
80
76/* Non-zero means that a HELP_EVENT has been generated since Emacs 81/* Non-zero means that a HELP_EVENT has been generated since Emacs
77 start. */ 82 start. */
78 83