6
0
mirror of https://github.com/EddieIvan01/memexec synced 2024-06-27 01:10:03 +00:00
memexec/src/peloader/error.rs
2020-11-25 18:26:36 +08:00

29 lines
648 B
Rust

#[derive(Debug)]
pub enum Error {
InvalidCString,
LoadLibararyFail,
GetProcAddressFail,
NtAllocVmErr(i32),
NtProtectVmErr(i32),
InvalidUtf8String,
MismatchedArch,
MismatchedLoader,
NoEntryPoint,
UnsupportedDotNetExecutable,
InvalidProcDescString,
}
pub type Result<T> = std::result::Result<T, Error>;
impl std::convert::From<std::str::Utf8Error> for Error {
fn from(_: std::str::Utf8Error) -> Self {
Error::InvalidUtf8String
}
}
impl std::convert::From<std::num::ParseIntError> for Error {
fn from(_: std::num::ParseIntError) -> Self {
Error::InvalidProcDescString
}
}