[go: up one dir, main page]

wio 0.1.0

Windows IO wrapper
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright © 2015, Peter Atashian
// Licensed under the MIT License <LICENSE.md>
use {w};
use handle::{Handle};
use std::os::windows::io::{AsRawHandle};

pub struct Thread(Handle);

impl AsRawHandle for Thread {
    fn as_raw_handle(&self) -> w::HANDLE {
        self.0.as_raw_handle()
    }
}