fix win7 getNtSendInput

This commit is contained in:
2026-06-29 09:10:42 +08:00
parent 1a601fb2d3
commit 52a29890d2
8 changed files with 100 additions and 25 deletions
+6 -7
View File
@@ -1,20 +1,19 @@
#include "mouse_key_win10.h"
#include "mouse_keybord_hook.h"
#include "inline_hooks.h"
#include "protect_filter.h"
fnNtUserSendInput_win10 origon_NtUserSendInput_win10;
namespace mouse_key_win10
{
__int64 __fastcall hkNtUserSendInput(unsigned int a1, volatile void* a2, int a3, int a4)
{
auto pid = PsGetCurrentProcessId();
if (protect_filter::is_white_pid(HandleToLong(pid), NULL))
return origon_NtUserSendInput_win10(a1, a2, a3, a4);
DbgPrintEx(77, 0, "%d\n", PsGetCurrentProcessId());
return origon_NtUserSendInput_win10(a1, a2, a3, a4);
return NULL;
}
}