summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Storage/Pickers/Provider/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Storage/Pickers/Provider/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Storage/Pickers/Provider/mod.rs51
1 files changed, 0 insertions, 51 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Storage/Pickers/Provider/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Storage/Pickers/Provider/mod.rs
deleted file mode 100644
index 0c490f5e2..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Storage/Pickers/Provider/mod.rs
+++ /dev/null
@@ -1,51 +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 AddFileResult(pub i32);
-impl AddFileResult {
- pub const Added: Self = Self(0i32);
- pub const AlreadyAdded: Self = Self(1i32);
- pub const NotAllowed: Self = Self(2i32);
- pub const Unavailable: Self = Self(3i32);
-}
-impl ::core::marker::Copy for AddFileResult {}
-impl ::core::clone::Clone for AddFileResult {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type FileOpenPickerUI = *mut ::core::ffi::c_void;
-pub type FileRemovedEventArgs = *mut ::core::ffi::c_void;
-pub type FileSavePickerUI = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct FileSelectionMode(pub i32);
-impl FileSelectionMode {
- pub const Single: Self = Self(0i32);
- pub const Multiple: Self = Self(1i32);
-}
-impl ::core::marker::Copy for FileSelectionMode {}
-impl ::core::clone::Clone for FileSelectionMode {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type PickerClosingDeferral = *mut ::core::ffi::c_void;
-pub type PickerClosingEventArgs = *mut ::core::ffi::c_void;
-pub type PickerClosingOperation = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct SetFileNameResult(pub i32);
-impl SetFileNameResult {
- pub const Succeeded: Self = Self(0i32);
- pub const NotAllowed: Self = Self(1i32);
- pub const Unavailable: Self = Self(2i32);
-}
-impl ::core::marker::Copy for SetFileNameResult {}
-impl ::core::clone::Clone for SetFileNameResult {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type TargetFileRequest = *mut ::core::ffi::c_void;
-pub type TargetFileRequestDeferral = *mut ::core::ffi::c_void;
-pub type TargetFileRequestedEventArgs = *mut ::core::ffi::c_void;