On Mon, 2007-05-14 at 20:12 +0200, Rafał Miłecki wrote:
I can not find anywhere code writing any value to "pGetAsyncKeyState" nor function that is executed when "pGetAsyncKeyState" is called.
What you're looking at here is a function pointer to the driver that handles input for your windowing system (X11 in most cases.) You can find the implementation for this function in dlls/winex11.drv/keyboard.c in the function X11DRV_GetAsyncKeyState.
HTH