win_hotkeys/lib.rs
1//! # Win-Hotkeys
2//!
3//! Win-hotkeys is a Rust library for creating and managing global hotkeys on Windows.
4//! It provides an ergonomic API for setting up keyboard hooks, registering hotkeys,
5//! and handling keyboard events in a safe and efficient manner.
6
7#[cfg(windows)]
8pub mod error;
9#[cfg(windows)]
10pub mod hook;
11#[cfg(windows)]
12pub mod hotkey;
13#[cfg(windows)]
14mod keys;
15#[cfg(windows)]
16mod manager;
17#[cfg(windows)]
18pub mod state;
19
20#[cfg(windows)]
21pub use keys::*;
22#[cfg(windows)]
23pub use manager::*;