kdmp_parser/
lib.rs

1// Axel '0vercl0k' Souchet - February 25 2024
2#![doc = include_str!("../README.md")]
3mod bits;
4mod error;
5mod gxa;
6mod map;
7mod parse;
8mod pxe;
9mod structs;
10
11pub use bits::Bits;
12pub use error::{AddrTranslationError, KdmpParserError, PxeNotPresent, Result};
13pub use gxa::{Gpa, Gva, Gxa};
14pub use map::{MappedFileReader, Reader};
15pub use parse::KernelDumpParser;
16pub use pxe::{Pfn, Pxe, PxeFlags};
17pub use structs::{Context, DumpType, Header64};