Fix Windows module

This commit is contained in:
David Peter 2017-10-26 22:20:12 +02:00
parent b3f1e1844d
commit 46db4a3860
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@
extern crate kernel32;
extern crate winapi;
use kernel32::{GetStdHandle, GetConsoleMode, SetConsoleMode};
use winapi::{STD_OUTPUT_HANDLE, INVALID_HANDLE_VALUE};
use self::kernel32::{GetStdHandle, GetConsoleMode, SetConsoleMode};
use self::winapi::{STD_OUTPUT_HANDLE, INVALID_HANDLE_VALUE};
const ENABLE_VIRTUAL_TERMINAL_PROCESSING: u32 = 0x0004;