mirror of
https://github.com/joaoviictorti/shadow-rs.git
synced 2026-01-15 05:24:21 +01:00
21 lines
415 B
Rust
21 lines
415 B
Rust
pub const MAX_PIDS: usize = 256;
|
|
pub const MAX_DRIVER: usize = 256;
|
|
pub const MAX_TIDS: usize = 256;
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Default)]
|
|
pub enum Callbacks {
|
|
#[default]
|
|
PsSetCreateProcessNotifyRoutine,
|
|
PsSetCreateThreadNotifyRoutine,
|
|
PsSetLoadImageNotifyRoutine,
|
|
CmRegisterCallbackEx,
|
|
ObProcess,
|
|
ObThread,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub enum Options {
|
|
Hide,
|
|
Protection
|
|
}
|