win-auto-utils 0.2.3

Universal Windows automation utilities with memory, window, input, and color operations
1
2
3
4
5
6
7
8
9
10
11
12
//! Memory Manager Module
//!
//! Provides a unified interface for managing memory modifications (Locks, Hooks, etc.)
//! with support for dynamic address resolution and process context binding.

pub mod builtin;
pub mod manager;
pub mod register;

// Re-export core types
pub use manager::ModifierManager;
pub use register::ModifierHandler;