From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- third_party/rust/raw-window-handle/src/haiku.rs | 46 +++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 third_party/rust/raw-window-handle/src/haiku.rs (limited to 'third_party/rust/raw-window-handle/src/haiku.rs') diff --git a/third_party/rust/raw-window-handle/src/haiku.rs b/third_party/rust/raw-window-handle/src/haiku.rs new file mode 100644 index 0000000000..d44e8c2017 --- /dev/null +++ b/third_party/rust/raw-window-handle/src/haiku.rs @@ -0,0 +1,46 @@ +use core::ffi::c_void; +use core::ptr; + +/// Raw display handle for Haiku. +/// +/// ## Construction +/// ``` +/// # use raw_window_handle::HaikuDisplayHandle; +/// let mut display_handle = HaikuDisplayHandle::empty(); +/// /* set fields */ +/// ``` +#[non_exhaustive] +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub struct HaikuDisplayHandle; + +impl HaikuDisplayHandle { + pub fn empty() -> Self { + Self {} + } +} + +/// Raw window handle for Haiku. +/// +/// ## Construction +/// ``` +/// # use raw_window_handle::HaikuWindowHandle; +/// let mut window_handle = HaikuWindowHandle::empty(); +/// /* set fields */ +/// ``` +#[non_exhaustive] +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +pub struct HaikuWindowHandle { + /// A pointer to a BWindow object + pub b_window: *mut c_void, + /// A pointer to a BDirectWindow object that might be null + pub b_direct_window: *mut c_void, +} + +impl HaikuWindowHandle { + pub fn empty() -> Self { + Self { + b_window: ptr::null_mut(), + b_direct_window: ptr::null_mut(), + } + } +} -- cgit v1.2.3