mirror of
https://github.com/reactos/wine.git
synced 2024-12-02 08:46:29 +00:00
20 lines
353 B
C
20 lines
353 B
C
|
/*
|
||
|
* Keyboard related functions
|
||
|
*
|
||
|
* Copyright 1993 Bob Amstadt
|
||
|
*/
|
||
|
|
||
|
static char Copyright[] = "Copyright Bob Amstadt, 1993";
|
||
|
|
||
|
#include <X11/Intrinsic.h>
|
||
|
#include <X11/StringDefs.h>
|
||
|
#include "win.h"
|
||
|
|
||
|
/**********************************************************************
|
||
|
* GetKeyState (USER.106)
|
||
|
*/
|
||
|
int GetKeyState(int keycode)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|