summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Web/Http/Filters/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys/src/Windows/Web/Http/Filters/mod.rs')
-rw-r--r--vendor/windows-sys/src/Windows/Web/Http/Filters/mod.rs45
1 files changed, 0 insertions, 45 deletions
diff --git a/vendor/windows-sys/src/Windows/Web/Http/Filters/mod.rs b/vendor/windows-sys/src/Windows/Web/Http/Filters/mod.rs
deleted file mode 100644
index f48fcbfff..000000000
--- a/vendor/windows-sys/src/Windows/Web/Http/Filters/mod.rs
+++ /dev/null
@@ -1,45 +0,0 @@
-pub type HttpBaseProtocolFilter = *mut ::core::ffi::c_void;
-pub type HttpCacheControl = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Web_Http_Filters\"`*"]
-#[repr(transparent)]
-pub struct HttpCacheReadBehavior(pub i32);
-impl HttpCacheReadBehavior {
- pub const Default: Self = Self(0i32);
- pub const MostRecent: Self = Self(1i32);
- pub const OnlyFromCache: Self = Self(2i32);
- pub const NoCache: Self = Self(3i32);
-}
-impl ::core::marker::Copy for HttpCacheReadBehavior {}
-impl ::core::clone::Clone for HttpCacheReadBehavior {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[doc = "*Required features: `\"Web_Http_Filters\"`*"]
-#[repr(transparent)]
-pub struct HttpCacheWriteBehavior(pub i32);
-impl HttpCacheWriteBehavior {
- pub const Default: Self = Self(0i32);
- pub const NoCache: Self = Self(1i32);
-}
-impl ::core::marker::Copy for HttpCacheWriteBehavior {}
-impl ::core::clone::Clone for HttpCacheWriteBehavior {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[doc = "*Required features: `\"Web_Http_Filters\"`*"]
-#[repr(transparent)]
-pub struct HttpCookieUsageBehavior(pub i32);
-impl HttpCookieUsageBehavior {
- pub const Default: Self = Self(0i32);
- pub const NoCookies: Self = Self(1i32);
-}
-impl ::core::marker::Copy for HttpCookieUsageBehavior {}
-impl ::core::clone::Clone for HttpCookieUsageBehavior {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type HttpServerCustomValidationRequestedEventArgs = *mut ::core::ffi::c_void;
-pub type IHttpFilter = *mut ::core::ffi::c_void;