summaryrefslogtreecommitdiff
path: root/src/w32inevt.c
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>2000-08-22 23:33:55 +0000
committerAndrew Innes <andrewi@gnu.org>2000-08-22 23:33:55 +0000
commit5d182c8260c094c7212aa3595af786277e714146 (patch)
tree4c95f7ceaffbb3c9c5c2d1c7bc7bf52d3b3ab2fb /src/w32inevt.c
parent5e6425a042e4d0ade8530f67d5d771b1ec8a994b (diff)
downloademacs-5d182c8260c094c7212aa3595af786277e714146.tar.gz
Include keyboard.h before frame.h.
(MOUSE_MOVED): Define if not known.
Diffstat (limited to 'src/w32inevt.c')
-rw-r--r--src/w32inevt.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/w32inevt.c b/src/w32inevt.c
index 99e3ead3ae3..d060b57561f 100644
--- a/src/w32inevt.c
+++ b/src/w32inevt.c
@@ -29,7 +29,12 @@ Boston, MA 02111-1307, USA.
#include <stdio.h>
#include <windows.h>
+#ifndef MOUSE_MOVED
+#define MOUSE_MOVED 1
+#endif
+
#include "lisp.h"
+#include "keyboard.h"
#include "frame.h"
#include "blockinput.h"
#include "termhooks.h"