summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/mod.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/mod.rs
deleted file mode 100644
index afe53eaf4..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/ApplicationModel/DataTransfer/DragDrop/mod.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[cfg(feature = "ApplicationModel_DataTransfer_DragDrop_Core")]
-pub mod Core;
-#[link(name = "windows")]
-extern "system" {}
-#[repr(transparent)]
-pub struct DragDropModifiers(pub u32);
-impl DragDropModifiers {
- pub const None: Self = Self(0u32);
- pub const Shift: Self = Self(1u32);
- pub const Control: Self = Self(2u32);
- pub const Alt: Self = Self(4u32);
- pub const LeftButton: Self = Self(8u32);
- pub const MiddleButton: Self = Self(16u32);
- pub const RightButton: Self = Self(32u32);
-}
-impl ::core::marker::Copy for DragDropModifiers {}
-impl ::core::clone::Clone for DragDropModifiers {
- fn clone(&self) -> Self {
- *self
- }
-}