mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
1ed4ecffa8
Removed warnings. Made the include files self-sufficient. Some Solaris fixes.
20 lines
352 B
C
20 lines
352 B
C
/*
|
|
* USER input header file
|
|
* Copyright 1997 David Faure
|
|
*
|
|
*/
|
|
|
|
#ifndef __WINE_INPUT_H
|
|
#define __WINE_INPUT_H
|
|
|
|
#include "windef.h"
|
|
|
|
extern BOOL MouseButtonsStates[3];
|
|
extern BOOL AsyncMouseButtonsStates[3];
|
|
extern BYTE InputKeyStateTable[256];
|
|
extern BYTE QueueKeyStateTable[256];
|
|
extern BYTE AsyncKeyStateTable[256];
|
|
|
|
#endif /* __WINE_INPUT_H */
|
|
|