From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- vendor/windows-sys/src/Windows/UI/Popups/mod.rs | 35 +++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 vendor/windows-sys/src/Windows/UI/Popups/mod.rs (limited to 'vendor/windows-sys/src/Windows/UI/Popups') diff --git a/vendor/windows-sys/src/Windows/UI/Popups/mod.rs b/vendor/windows-sys/src/Windows/UI/Popups/mod.rs new file mode 100644 index 000000000..6dfe37b2d --- /dev/null +++ b/vendor/windows-sys/src/Windows/UI/Popups/mod.rs @@ -0,0 +1,35 @@ +pub type IUICommand = *mut ::core::ffi::c_void; +pub type MessageDialog = *mut ::core::ffi::c_void; +#[doc = "*Required features: `\"UI_Popups\"`*"] +#[repr(transparent)] +pub struct MessageDialogOptions(pub u32); +impl MessageDialogOptions { + pub const None: Self = Self(0u32); + pub const AcceptUserInputAfterDelay: Self = Self(1u32); +} +impl ::core::marker::Copy for MessageDialogOptions {} +impl ::core::clone::Clone for MessageDialogOptions { + fn clone(&self) -> Self { + *self + } +} +#[doc = "*Required features: `\"UI_Popups\"`*"] +#[repr(transparent)] +pub struct Placement(pub i32); +impl Placement { + pub const Default: Self = Self(0i32); + pub const Above: Self = Self(1i32); + pub const Below: Self = Self(2i32); + pub const Left: Self = Self(3i32); + pub const Right: Self = Self(4i32); +} +impl ::core::marker::Copy for Placement {} +impl ::core::clone::Clone for Placement { + fn clone(&self) -> Self { + *self + } +} +pub type PopupMenu = *mut ::core::ffi::c_void; +pub type UICommand = *mut ::core::ffi::c_void; +pub type UICommandInvokedHandler = *mut ::core::ffi::c_void; +pub type UICommandSeparator = *mut ::core::ffi::c_void; -- cgit v1.2.3