How do I know which process trigger the injected keyboard (backstage?)

东朴 虞 0 Reputation points
2024-11-25T02:59:50.2633333+00:00

My application is detecting the keyboard input, and also the injected flag keyboard.

below is my code, I want to get the process triggered the LLKHF_INJECTED flag keyboard input event.

static LRESULT   CALLBACK    KeyboardHookProc_LL(int   nCode,WPARAM   wparam,LPARAM   lparam)    
{  
	PKBDLLHOOKSTRUCT pPoint;
	int ID = (int)wparam;
	global_params::UserRequestInfo uri;
	HWND fgWindow;
	EventHooker::KeyItem key_params;
	if ( nCode == HC_ACTION ){
		pPoint = PKBDLLHOOKSTRUCT(lparam);
		// pass the key event program generated
		// NOTE: LLKHF_INJECTED means the key down event
		// is stimulated by program using SendInput, but
		// not by User.
		switch ( ID ){
				case WM_SYSKEYDOWN: // ALT+key down send wm_syskeydown
				case WM_KEYDOWN:
					if (WaitForSingleObject(hKeySynMutex, 0) == WAIT_OBJECT_0) {
						if (pPoint->flags & LLKHF_INJECTED)
						{
							//TODO get which process triggered the injected keyboard
							key_params.uri.nInjected = 1;
						}
						else
						{
							key_params.uri.nInjected = 0;
						}
						HandleKeyPressed(key_params);
						ReleaseMutex(hKeySynMutex);
					}
					break;
				case WM_KEYUP:
					break;
				case WM_SYSKEYUP:
					break;
				default:
					break;
		}
		utility::InitSecAuthTimer(FALSE);
	}
next:
	return CallNextHookEx(0,nCode,wparam,lparam);
} 
Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,823 questions
C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,896 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.