#include <StructureConstants.au3>
#include <WinAPIEx.au3>
OnAutoItExitRegister("Cleanup")
HotKeySet("{F6}", "_Exit")
Global Const $LLKHF_LOWER_IL_INJECTED = 0x00000002
Global Const $g_INJECTED_MASK = BitOr($LLKHF_LOWER_IL_INJECTED, $LLKHF_INJECTED)
Global Const $g_ExtraInfoValue = 0x00000227
Global $g_hHook, $g_hStub_KeyProc
$g_hStub_KeyProc = DllCallbackRegister("_KeyProc", "long", "int;wparam;lparam")
$g_hHook = _WinAPI_SetWindowsHookEx( _
$WH_KEYBOARD_LL, _
DllCallbackGetPtr($g_hStub_KeyProc), _
_WinAPI_GetModuleHandle(0) _
)
If Not $g_hHook Then _
Exit
While Sleep(100)
If Random(1, 10, 1) = 5 Then
ConsoleWrite("Sending key..." & @CRLF)
_WinAPI_Keybd_Event(0x20, 0, 0, $g_ExtraInfoValue)
Sleep(100)
_WinAPI_Keybd_Event(0x20, 2, 0, $g_ExtraInfoValue)
EndIf
WEnd
Func _KeyProc($nCode, $wParam, $lParam)
Local $tKEYHOOKS
$tKEYHOOKS = DllStructCreate($tagKBDLLHOOKSTRUCT, $lParam)
If Not ($nCode < 0) Then
If BitAnd($tKEYHOOKS.flags, $g_INJECTED_MASK) And $tKEYHOOKS.dwExtraInfo = $g_ExtraInfoValue Then
If $wParam = 0x0100 Then _
ConsoleWrite( "Detected injected flag at key: " & Hex($tKEYHOOKS.vkCode, 2) & @CRLF)
$tKEYHOOKS.flags = BitAnd(BitNot($g_INJECTED_MASK), $tKEYHOOKS.flags)
$tKEYHOOKS.dwExtraInfo = 0
EndIf
EndIf
Return _WinAPI_CallNextHookEx($g_hHook, $nCode, $wParam, $lParam)
EndFunc
Func Cleanup()
_WinAPI_UnhookWindowsHookEx($g_hHook)
DllCallbackFree($g_hStub_KeyProc)
EndFunc
Func _Exit()
Exit
EndFunc