mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
2b067584e9
keybd_event and mouse_event, and USER-related code removed from windows/event.c and windows/keyboard.c.
17 lines
335 B
C
17 lines
335 B
C
/*
|
|
* 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 */
|
|
|