summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Gaming/UI/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Gaming/UI/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Gaming/UI/mod.rs37
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Gaming/UI/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Gaming/UI/mod.rs
deleted file mode 100644
index 8897b70e6..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Gaming/UI/mod.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-#[repr(transparent)]
-pub struct GameChatMessageOrigin(pub i32);
-impl GameChatMessageOrigin {
- pub const Voice: Self = Self(0i32);
- pub const Text: Self = Self(1i32);
-}
-impl ::core::marker::Copy for GameChatMessageOrigin {}
-impl ::core::clone::Clone for GameChatMessageOrigin {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type GameChatMessageReceivedEventArgs = *mut ::core::ffi::c_void;
-pub type GameChatOverlay = *mut ::core::ffi::c_void;
-pub type GameChatOverlayMessageSource = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct GameChatOverlayPosition(pub i32);
-impl GameChatOverlayPosition {
- pub const BottomCenter: Self = Self(0i32);
- pub const BottomLeft: Self = Self(1i32);
- pub const BottomRight: Self = Self(2i32);
- pub const MiddleRight: Self = Self(3i32);
- pub const MiddleLeft: Self = Self(4i32);
- pub const TopCenter: Self = Self(5i32);
- pub const TopLeft: Self = Self(6i32);
- pub const TopRight: Self = Self(7i32);
-}
-impl ::core::marker::Copy for GameChatOverlayPosition {}
-impl ::core::clone::Clone for GameChatOverlayPosition {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type GameUIProviderActivatedEventArgs = *mut ::core::ffi::c_void;