mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
a396029270
standard Windows names.
17 lines
331 B
C
17 lines
331 B
C
/*
|
|
* USER input header file
|
|
* Copyright 1997 David Faure
|
|
*
|
|
*/
|
|
|
|
#ifndef __WINE_INPUT_H
|
|
#define __WINE_INPUT_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 */
|
|
|