Skip to content

Commit eac01f1

Browse files
committed
Implement AsRawHandle for Std* on Windows
1 parent e9c55d1 commit eac01f1

File tree

1 file changed

+22
-0
lines changed
  • src/libstd/sys/windows/ext

1 file changed

+22
-0
lines changed

src/libstd/sys/windows/ext/io.rs

+22
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use os::windows::raw;
1515
use net;
1616
use sys_common::{self, AsInner, FromInner, IntoInner};
1717
use sys;
18+
use io;
1819
use sys::c;
1920

2021
/// Raw HANDLEs.
@@ -71,6 +72,27 @@ impl AsRawHandle for fs::File {
7172
}
7273
}
7374

75+
#[stable(feature = "asraw_stdio", since = "1.21.0")]
76+
impl AsRawHandle for io::Stdin {
77+
fn as_raw_handle(&self) -> RawHandle {
78+
unsafe { c::GetStdHandle(c::STD_INPUT_HANDLE) } as RawHandle
79+
}
80+
}
81+
82+
#[stable(feature = "asraw_stdio", since = "1.21.0")]
83+
impl AsRawHandle for io::Stdout {
84+
fn as_raw_handle(&self) -> RawHandle {
85+
unsafe { c::GetStdHandle(c::STD_OUTPUT_HANDLE) } as RawHandle
86+
}
87+
}
88+
89+
#[stable(feature = "asraw_stdio", since = "1.21.0")]
90+
impl AsRawHandle for io::Stderr {
91+
fn as_raw_handle(&self) -> RawHandle {
92+
unsafe { c::GetStdHandle(c::STD_ERROR_HANDLE) } as RawHandle
93+
}
94+
}
95+
7496
#[stable(feature = "from_raw_os", since = "1.1.0")]
7597
impl FromRawHandle for fs::File {
7698
unsafe fn from_raw_handle(handle: RawHandle) -> fs::File {

0 commit comments

Comments
 (0)