summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/UI/Shell/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/UI/Shell/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/UI/Shell/mod.rs59
1 files changed, 0 insertions, 59 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/UI/Shell/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/UI/Shell/mod.rs
deleted file mode 100644
index 52b8b2ff9..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/UI/Shell/mod.rs
+++ /dev/null
@@ -1,59 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-pub type IAdaptiveCard = *mut ::core::ffi::c_void;
-pub type IAdaptiveCardBuilderStatics = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct SecurityAppKind(pub i32);
-impl SecurityAppKind {
- pub const WebProtection: Self = Self(0i32);
-}
-impl ::core::marker::Copy for SecurityAppKind {}
-impl ::core::clone::Clone for SecurityAppKind {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type SecurityAppManager = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct SecurityAppState(pub i32);
-impl SecurityAppState {
- pub const Disabled: Self = Self(0i32);
- pub const Enabled: Self = Self(1i32);
-}
-impl ::core::marker::Copy for SecurityAppState {}
-impl ::core::clone::Clone for SecurityAppState {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct SecurityAppSubstatus(pub i32);
-impl SecurityAppSubstatus {
- pub const Undetermined: Self = Self(0i32);
- pub const NoActionNeeded: Self = Self(1i32);
- pub const ActionRecommended: Self = Self(2i32);
- pub const ActionNeeded: Self = Self(3i32);
-}
-impl ::core::marker::Copy for SecurityAppSubstatus {}
-impl ::core::clone::Clone for SecurityAppSubstatus {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct ShareWindowCommand(pub i32);
-impl ShareWindowCommand {
- pub const None: Self = Self(0i32);
- pub const StartSharing: Self = Self(1i32);
- pub const StopSharing: Self = Self(2i32);
-}
-impl ::core::marker::Copy for ShareWindowCommand {}
-impl ::core::clone::Clone for ShareWindowCommand {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type ShareWindowCommandEventArgs = *mut ::core::ffi::c_void;
-pub type ShareWindowCommandSource = *mut ::core::ffi::c_void;
-pub type TaskbarManager = *mut ::core::ffi::c_void;