Skip to content

Commit 9a54176

Browse files
committed
Rewrite Keylogger
Fixed bugs and re-implemented keylogger using latest windows crate
1 parent 2bd18c0 commit 9a54176

File tree

2 files changed

+330
-205
lines changed

2 files changed

+330
-205
lines changed
Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "SetWindowsHookEx"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
5+
authors = ["Smukx"]
56

67
[dependencies]
7-
winapi = { version = "0.3.9", features = ["winuser","setupapi","dbghelp","wlanapi","winnls","wincon","fileapi","sysinfoapi", "fibersapi","debugapi","winerror", "wininet" , "winhttp" ,"synchapi","securitybaseapi","wincrypt","psapi", "tlhelp32", "heapapi","shellapi", "memoryapi", "processthreadsapi", "errhandlingapi", "winbase", "handleapi", "synchapi"] }
8+
windows-sys = { version = "0.61.2", features = [
9+
"Win32_Foundation",
10+
"Win32_UI_WindowsAndMessaging",
11+
"Win32_UI_Input_KeyboardAndMouse",
12+
"Win32_System_LibraryLoader",
13+
] }

0 commit comments

Comments
 (0)