Files
ferrisetw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Abstraction layer for Native functions and types
//!
//! This module interacts with the Windows native functions and should abstract all `unsafe` calls
mod bindings {
    windows::include_bindings!();
}

pub mod etw_types;
pub mod evntrace;
pub mod pla;
pub mod tdh;
pub mod tdh_types;
pub mod version_helper;