summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Media/ClosedCaptioning/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Media/ClosedCaptioning/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Media/ClosedCaptioning/mod.rs86
1 files changed, 0 insertions, 86 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Media/ClosedCaptioning/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Media/ClosedCaptioning/mod.rs
deleted file mode 100644
index 03967590b..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Media/ClosedCaptioning/mod.rs
+++ /dev/null
@@ -1,86 +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 ClosedCaptionColor(pub i32);
-impl ClosedCaptionColor {
- pub const Default: Self = Self(0i32);
- pub const White: Self = Self(1i32);
- pub const Black: Self = Self(2i32);
- pub const Red: Self = Self(3i32);
- pub const Green: Self = Self(4i32);
- pub const Blue: Self = Self(5i32);
- pub const Yellow: Self = Self(6i32);
- pub const Magenta: Self = Self(7i32);
- pub const Cyan: Self = Self(8i32);
-}
-impl ::core::marker::Copy for ClosedCaptionColor {}
-impl ::core::clone::Clone for ClosedCaptionColor {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct ClosedCaptionEdgeEffect(pub i32);
-impl ClosedCaptionEdgeEffect {
- pub const Default: Self = Self(0i32);
- pub const None: Self = Self(1i32);
- pub const Raised: Self = Self(2i32);
- pub const Depressed: Self = Self(3i32);
- pub const Uniform: Self = Self(4i32);
- pub const DropShadow: Self = Self(5i32);
-}
-impl ::core::marker::Copy for ClosedCaptionEdgeEffect {}
-impl ::core::clone::Clone for ClosedCaptionEdgeEffect {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct ClosedCaptionOpacity(pub i32);
-impl ClosedCaptionOpacity {
- pub const Default: Self = Self(0i32);
- pub const OneHundredPercent: Self = Self(1i32);
- pub const SeventyFivePercent: Self = Self(2i32);
- pub const TwentyFivePercent: Self = Self(3i32);
- pub const ZeroPercent: Self = Self(4i32);
-}
-impl ::core::marker::Copy for ClosedCaptionOpacity {}
-impl ::core::clone::Clone for ClosedCaptionOpacity {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct ClosedCaptionSize(pub i32);
-impl ClosedCaptionSize {
- pub const Default: Self = Self(0i32);
- pub const FiftyPercent: Self = Self(1i32);
- pub const OneHundredPercent: Self = Self(2i32);
- pub const OneHundredFiftyPercent: Self = Self(3i32);
- pub const TwoHundredPercent: Self = Self(4i32);
-}
-impl ::core::marker::Copy for ClosedCaptionSize {}
-impl ::core::clone::Clone for ClosedCaptionSize {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct ClosedCaptionStyle(pub i32);
-impl ClosedCaptionStyle {
- pub const Default: Self = Self(0i32);
- pub const MonospacedWithSerifs: Self = Self(1i32);
- pub const ProportionalWithSerifs: Self = Self(2i32);
- pub const MonospacedWithoutSerifs: Self = Self(3i32);
- pub const ProportionalWithoutSerifs: Self = Self(4i32);
- pub const Casual: Self = Self(5i32);
- pub const Cursive: Self = Self(6i32);
- pub const SmallCapitals: Self = Self(7i32);
-}
-impl ::core::marker::Copy for ClosedCaptionStyle {}
-impl ::core::clone::Clone for ClosedCaptionStyle {
- fn clone(&self) -> Self {
- *self
- }
-}