pub trait Inject {
    fn inject(&self) -> Result<(), Error>;
    fn eject(&self) -> Result<(), Error>;
    fn find_pid(name: Data<'_>) -> Result<Vec<u32>, Error>;
}
Expand description

This represents the actions, that are supported with a dll.

Required Methods

Injects a dll

Ejects a dll

This Function will find all currently processes, with a given name. Even if no processes are found, an empty Vector should return.

Implementors