fast-down-gui 0.1.45

超级快的下载器图形化界面
Documentation
1
2
3
4
5
6
7
pub fn attach_console() {
    #[cfg(target_os = "windows")]
    unsafe {
        use windows::Win32::System::Console::{ATTACH_PARENT_PROCESS, AttachConsole};
        let _ = AttachConsole(ATTACH_PARENT_PROCESS);
    };
}