mirror of
https://github.com/reactos/wine.git
synced 2024-12-02 00:36:43 +00:00
a21672ebbc
Fixed confusion between queue state and async state.
17 lines
240 B
C
17 lines
240 B
C
/*
|
|
* USER input header file
|
|
* Copyright 1997 David Faure
|
|
*
|
|
*/
|
|
|
|
#ifndef __WINE_INPUT_H
|
|
#define __WINE_INPUT_H
|
|
|
|
#include "windef.h"
|
|
|
|
extern BYTE InputKeyStateTable[256];
|
|
extern BYTE AsyncKeyStateTable[256];
|
|
|
|
#endif /* __WINE_INPUT_H */
|
|
|