USER-side part of input event handling: contains implementation of
keybd_event and mouse_event, and USER-related code removed from
windows/event.c and windows/keyboard.c.
diff --git a/include/input.h b/include/input.h
new file mode 100644
index 0000000..45e2405
--- /dev/null
+++ b/include/input.h
@@ -0,0 +1,17 @@
+/*
+ * USER input header file
+ * Copyright 1997 David Faure
+ *
+ */
+
+#ifndef __WINE_INPUT_H
+#define __WINE_INPUT_H
+
+extern BOOL32 MouseButtonsStates[3];
+extern BOOL32 AsyncMouseButtonsStates[3];
+extern BYTE InputKeyStateTable[256];
+extern BYTE QueueKeyStateTable[256];
+extern BYTE AsyncKeyStateTable[256];
+
+#endif /* __WINE_INPUT_H */
+