kdmp_parser/lib.rs
// Axel '0vercl0k' Souchet - February 25 2024
#![doc = include_str!("../README.md")]
mod bits;
mod error;
mod gxa;
mod map;
mod parse;
mod pxe;
mod structs;
pub use bits::Bits;
pub use error::{AddrTranslationError, KdmpParserError, PxeNotPresent, Result};
pub use gxa::{Gpa, Gva, Gxa};
pub use map::{MappedFileReader, Reader};
pub use parse::KernelDumpParser;
pub use pxe::{Pfn, Pxe, PxeFlags};
pub use structs::DumpType;