fenestroj 0.0.11

Easier wrappers for Win32 API stuff, safe when possible
Documentation
#![cfg(feature = "handleapi")]

//! Handles and things.
//!
//! Right now it just re-exports the `INVALID_HANDLE_VALUE` constant. More to
//! come eventually, I'm sure.

use super::*;

pub use winapi::um::handleapi::INVALID_HANDLE_VALUE;

pub(crate) use winapi::um::handleapi::{CloseHandle, DuplicateHandle};