├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── drivers ├── PROCEXP.sys ├── mhyprot2.Sys ├── rentdrv2.sys └── truesight.sys └── src ├── drivers ├── genshin.rs ├── mod.rs ├── process_explorer.rs ├── rentdrv2.rs └── true_sight.rs ├── lib.rs ├── main.rs └── win32 └── mod.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode/ -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/README.md -------------------------------------------------------------------------------- /drivers/PROCEXP.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/drivers/PROCEXP.sys -------------------------------------------------------------------------------- /drivers/mhyprot2.Sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/drivers/mhyprot2.Sys -------------------------------------------------------------------------------- /drivers/rentdrv2.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/drivers/rentdrv2.sys -------------------------------------------------------------------------------- /drivers/truesight.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/drivers/truesight.sys -------------------------------------------------------------------------------- /src/drivers/genshin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/drivers/genshin.rs -------------------------------------------------------------------------------- /src/drivers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/drivers/mod.rs -------------------------------------------------------------------------------- /src/drivers/process_explorer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/drivers/process_explorer.rs -------------------------------------------------------------------------------- /src/drivers/rentdrv2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/drivers/rentdrv2.rs -------------------------------------------------------------------------------- /src/drivers/true_sight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/drivers/true_sight.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/win32/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florianib/rusty_drivers/HEAD/src/win32/mod.rs --------------------------------------------------------------------------------