win32_ecoqos/
lib.rs

1#![doc = include_str!("../README.md")]
2#![cfg_attr(feature = "nightly", feature(doc_cfg))]
3
4pub use windows;
5pub use windows_result;
6
7pub(crate) mod preset;
8
9/// Process related EcoQoS toggle functions.
10pub mod process;
11/// Threading related EcoQoS toggle functions.
12pub mod thread;
13
14/// Helper functions to deal with processes/threads.
15///
16/// For a full example to open thread after obtained Win32 ThreadID,
17/// see [retrieve_thread.rs](https://github.com/mokurin000/fitgirl-ecoqos/blob/master/win32-ecoqos/examples/retrieve_thread.rs)
18pub mod utils;