summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Web/UI/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Web/UI/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Web/UI/mod.rs52
1 files changed, 0 insertions, 52 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Web/UI/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Web/UI/mod.rs
deleted file mode 100644
index 3e351bcd9..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Web/UI/mod.rs
+++ /dev/null
@@ -1,52 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[cfg(feature = "Web_UI_Interop")]
-pub mod Interop;
-#[link(name = "windows")]
-extern "system" {}
-pub type IWebViewControl = *mut ::core::ffi::c_void;
-pub type IWebViewControl2 = *mut ::core::ffi::c_void;
-pub type WebViewControlContentLoadingEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlDOMContentLoadedEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlDeferredPermissionRequest = *mut ::core::ffi::c_void;
-pub type WebViewControlLongRunningScriptDetectedEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlNavigationCompletedEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlNavigationStartingEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlNewWindowRequestedEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlPermissionRequest = *mut ::core::ffi::c_void;
-pub type WebViewControlPermissionRequestedEventArgs = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct WebViewControlPermissionState(pub i32);
-impl WebViewControlPermissionState {
- pub const Unknown: Self = Self(0i32);
- pub const Defer: Self = Self(1i32);
- pub const Allow: Self = Self(2i32);
- pub const Deny: Self = Self(3i32);
-}
-impl ::core::marker::Copy for WebViewControlPermissionState {}
-impl ::core::clone::Clone for WebViewControlPermissionState {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct WebViewControlPermissionType(pub i32);
-impl WebViewControlPermissionType {
- pub const Geolocation: Self = Self(0i32);
- pub const UnlimitedIndexedDBQuota: Self = Self(1i32);
- pub const Media: Self = Self(2i32);
- pub const PointerLock: Self = Self(3i32);
- pub const WebNotifications: Self = Self(4i32);
- pub const Screen: Self = Self(5i32);
- pub const ImmersiveView: Self = Self(6i32);
-}
-impl ::core::marker::Copy for WebViewControlPermissionType {}
-impl ::core::clone::Clone for WebViewControlPermissionType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type WebViewControlScriptNotifyEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlSettings = *mut ::core::ffi::c_void;
-pub type WebViewControlUnsupportedUriSchemeIdentifiedEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlUnviewableContentIdentifiedEventArgs = *mut ::core::ffi::c_void;
-pub type WebViewControlWebResourceRequestedEventArgs = *mut ::core::ffi::c_void;