use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[error("Failed to load library")]
LoadLibrary(windows::core::Error),
#[error("Failed to set instrumentation callback")]
NtSetInformationProcess(windows::Win32::Foundation::NTSTATUS),
}
pub type Result<T> = std::result::Result<T, Error>;