win-auto-utils 0.1.1

Universal Windows automation utilities with memory, window, input, and color operations
1
2
3
4
5
6
7
8
9
//! Pattern module for AOB scanning
//!
//! Provides pattern parsing, anchor selection, and related functionality.

mod parser;
pub(crate) mod anchor;

pub use parser::Pattern;
// Note: find_rarest_byte_index is used internally by scanner, not exported publicly