blob: 365886eed2cff7f56829b1e65f11f6ce7d8912d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
use core::ptr;
use libc::c_void;
/// Raw window handle for Windows.
///
/// ## Construction
/// ```
/// # use raw_window_handle::windows::WindowsHandle;
/// let handle = WindowsHandle {
/// /* fields */
/// ..WindowsHandle::empty()
/// };
/// ```
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct WindowsHandle {
/// A Win32 HWND handle.
pub hwnd: *mut c_void,
/// The HINSTANCE associated with this type's HWND.
pub hinstance: *mut c_void,
#[doc(hidden)]
#[deprecated = "This field is used to ensure that this struct is non-exhaustive, so that it may be extended in the future. Do not refer to this field."]
pub _non_exhaustive_do_not_use: crate::seal::Seal,
}
impl WindowsHandle {
pub fn empty() -> WindowsHandle {
#[allow(deprecated)]
WindowsHandle {
hwnd: ptr::null_mut(),
hinstance: ptr::null_mut(),
_non_exhaustive_do_not_use: crate::seal::Seal,
}
}
}
|