summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/UI/WindowManagement
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
commit4e8199b572f2035b7749cba276ece3a26630d23e (patch)
treef09feeed6a0fe39d027b1908aa63ea6b35e4b631 /vendor/windows-sys/src/Windows/UI/WindowManagement
parentAdding upstream version 1.66.0+dfsg1. (diff)
downloadrustc-4e8199b572f2035b7749cba276ece3a26630d23e.tar.xz
rustc-4e8199b572f2035b7749cba276ece3a26630d23e.zip
Adding upstream version 1.67.1+dfsg1.upstream/1.67.1+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows-sys/src/Windows/UI/WindowManagement')
-rw-r--r--vendor/windows-sys/src/Windows/UI/WindowManagement/Preview/mod.rs1
-rw-r--r--vendor/windows-sys/src/Windows/UI/WindowManagement/mod.rs88
2 files changed, 0 insertions, 89 deletions
diff --git a/vendor/windows-sys/src/Windows/UI/WindowManagement/Preview/mod.rs b/vendor/windows-sys/src/Windows/UI/WindowManagement/Preview/mod.rs
deleted file mode 100644
index 1b3084ce6..000000000
--- a/vendor/windows-sys/src/Windows/UI/WindowManagement/Preview/mod.rs
+++ /dev/null
@@ -1 +0,0 @@
-pub type WindowManagementPreview = *mut ::core::ffi::c_void;
diff --git a/vendor/windows-sys/src/Windows/UI/WindowManagement/mod.rs b/vendor/windows-sys/src/Windows/UI/WindowManagement/mod.rs
deleted file mode 100644
index 559b7bf46..000000000
--- a/vendor/windows-sys/src/Windows/UI/WindowManagement/mod.rs
+++ /dev/null
@@ -1,88 +0,0 @@
-#[cfg(feature = "UI_WindowManagement_Preview")]
-pub mod Preview;
-pub type AppWindow = *mut ::core::ffi::c_void;
-pub type AppWindowChangedEventArgs = *mut ::core::ffi::c_void;
-pub type AppWindowCloseRequestedEventArgs = *mut ::core::ffi::c_void;
-pub type AppWindowClosedEventArgs = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"UI_WindowManagement\"`*"]
-#[repr(transparent)]
-pub struct AppWindowClosedReason(pub i32);
-impl AppWindowClosedReason {
- pub const Other: Self = Self(0i32);
- pub const AppInitiated: Self = Self(1i32);
- pub const UserInitiated: Self = Self(2i32);
-}
-impl ::core::marker::Copy for AppWindowClosedReason {}
-impl ::core::clone::Clone for AppWindowClosedReason {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type AppWindowFrame = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"UI_WindowManagement\"`*"]
-#[repr(transparent)]
-pub struct AppWindowFrameStyle(pub i32);
-impl AppWindowFrameStyle {
- pub const Default: Self = Self(0i32);
- pub const NoFrame: Self = Self(1i32);
-}
-impl ::core::marker::Copy for AppWindowFrameStyle {}
-impl ::core::clone::Clone for AppWindowFrameStyle {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type AppWindowPlacement = *mut ::core::ffi::c_void;
-pub type AppWindowPresentationConfiguration = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"UI_WindowManagement\"`*"]
-#[repr(transparent)]
-pub struct AppWindowPresentationKind(pub i32);
-impl AppWindowPresentationKind {
- pub const Default: Self = Self(0i32);
- pub const CompactOverlay: Self = Self(1i32);
- pub const FullScreen: Self = Self(2i32);
-}
-impl ::core::marker::Copy for AppWindowPresentationKind {}
-impl ::core::clone::Clone for AppWindowPresentationKind {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type AppWindowPresenter = *mut ::core::ffi::c_void;
-pub type AppWindowTitleBar = *mut ::core::ffi::c_void;
-pub type AppWindowTitleBarOcclusion = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"UI_WindowManagement\"`*"]
-#[repr(transparent)]
-pub struct AppWindowTitleBarVisibility(pub i32);
-impl AppWindowTitleBarVisibility {
- pub const Default: Self = Self(0i32);
- pub const AlwaysHidden: Self = Self(1i32);
-}
-impl ::core::marker::Copy for AppWindowTitleBarVisibility {}
-impl ::core::clone::Clone for AppWindowTitleBarVisibility {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type CompactOverlayPresentationConfiguration = *mut ::core::ffi::c_void;
-pub type DefaultPresentationConfiguration = *mut ::core::ffi::c_void;
-pub type DisplayRegion = *mut ::core::ffi::c_void;
-pub type FullScreenPresentationConfiguration = *mut ::core::ffi::c_void;
-pub type WindowingEnvironment = *mut ::core::ffi::c_void;
-pub type WindowingEnvironmentAddedEventArgs = *mut ::core::ffi::c_void;
-pub type WindowingEnvironmentChangedEventArgs = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"UI_WindowManagement\"`*"]
-#[repr(transparent)]
-pub struct WindowingEnvironmentKind(pub i32);
-impl WindowingEnvironmentKind {
- pub const Unknown: Self = Self(0i32);
- pub const Overlapped: Self = Self(1i32);
- pub const Tiled: Self = Self(2i32);
-}
-impl ::core::marker::Copy for WindowingEnvironmentKind {}
-impl ::core::clone::Clone for WindowingEnvironmentKind {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type WindowingEnvironmentRemovedEventArgs = *mut ::core::ffi::c_void;