25dfd768e5
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
11 lines
254 B
Rust
11 lines
254 B
Rust
use tokio::process::Command;
|
|
|
|
#[cfg(windows)]
|
|
const CREATE_NO_WINDOW_FLAG: u32 = 0x08000000;
|
|
|
|
#[allow(unused_variables)]
|
|
pub fn configure_command_no_window(command: &mut Command) {
|
|
#[cfg(windows)]
|
|
command.creation_flags(CREATE_NO_WINDOW_FLAG);
|
|
}
|