zagens_runtime/cli/entry.rs
1//! Binary entry helpers (B3.1).
2
3#[cfg(windows)]
4pub fn configure_windows_console_utf8() {
5 use windows::Win32::System::Console::{SetConsoleCP, SetConsoleOutputCP};
6
7 const CP_UTF8: u32 = 65001;
8 unsafe {
9 let _ = SetConsoleCP(CP_UTF8);
10 let _ = SetConsoleOutputCP(CP_UTF8);
11 }
12}
13
14#[cfg(not(windows))]
15pub fn configure_windows_console_utf8() {}