Files
Ian G db58de05e4 Self unloading mechanism
Unloads self from the process it is injected into, allowing multiple of the DLL to be injected into the process multiple times after finishing.
2024-03-27 18:30:56 +00:00

17 lines
408 B
TOML

[package]
name = "rust_dll"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
windows = { version = "0.54.0", features = [
"Win32_System_LibraryLoader",
"Win32_UI_WindowsAndMessaging",
"Win32_System_SystemServices",
"Win32_System_Threading", "Win32_Security"
] }