fix windows

This commit is contained in:
WindSoilder 2022-08-01 19:43:35 +08:00
parent c5aa428c9f
commit 01c0b82ef4

View File

@ -43,11 +43,11 @@ pub mod external_process_setup {
// TODO: investigate if we can set foreground process through windows system call.
#[cfg(target_family = "windows")]
mod external_process_setup {
pub mod external_process_setup {
pub fn setup_fg_external(external_command: &mut std::process::Command) {}
pub fn set_foreground(process: &std::process::Child) -> i32 {}
pub fn set_foreground(process: &std::process::Child) {}
pub fn reset_foreground_id() {}
}