summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Globalization/DateTimeFormatting/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Globalization/DateTimeFormatting/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Globalization/DateTimeFormatting/mod.rs95
1 files changed, 0 insertions, 95 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Globalization/DateTimeFormatting/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Globalization/DateTimeFormatting/mod.rs
deleted file mode 100644
index b68ee6827..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Globalization/DateTimeFormatting/mod.rs
+++ /dev/null
@@ -1,95 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-pub type DateTimeFormatter = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct DayFormat(pub i32);
-impl DayFormat {
- pub const None: Self = Self(0i32);
- pub const Default: Self = Self(1i32);
-}
-impl ::core::marker::Copy for DayFormat {}
-impl ::core::clone::Clone for DayFormat {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct DayOfWeekFormat(pub i32);
-impl DayOfWeekFormat {
- pub const None: Self = Self(0i32);
- pub const Default: Self = Self(1i32);
- pub const Abbreviated: Self = Self(2i32);
- pub const Full: Self = Self(3i32);
-}
-impl ::core::marker::Copy for DayOfWeekFormat {}
-impl ::core::clone::Clone for DayOfWeekFormat {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct HourFormat(pub i32);
-impl HourFormat {
- pub const None: Self = Self(0i32);
- pub const Default: Self = Self(1i32);
-}
-impl ::core::marker::Copy for HourFormat {}
-impl ::core::clone::Clone for HourFormat {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct MinuteFormat(pub i32);
-impl MinuteFormat {
- pub const None: Self = Self(0i32);
- pub const Default: Self = Self(1i32);
-}
-impl ::core::marker::Copy for MinuteFormat {}
-impl ::core::clone::Clone for MinuteFormat {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct MonthFormat(pub i32);
-impl MonthFormat {
- pub const None: Self = Self(0i32);
- pub const Default: Self = Self(1i32);
- pub const Abbreviated: Self = Self(2i32);
- pub const Full: Self = Self(3i32);
- pub const Numeric: Self = Self(4i32);
-}
-impl ::core::marker::Copy for MonthFormat {}
-impl ::core::clone::Clone for MonthFormat {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct SecondFormat(pub i32);
-impl SecondFormat {
- pub const None: Self = Self(0i32);
- pub const Default: Self = Self(1i32);
-}
-impl ::core::marker::Copy for SecondFormat {}
-impl ::core::clone::Clone for SecondFormat {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct YearFormat(pub i32);
-impl YearFormat {
- pub const None: Self = Self(0i32);
- pub const Default: Self = Self(1i32);
- pub const Abbreviated: Self = Self(2i32);
- pub const Full: Self = Self(3i32);
-}
-impl ::core::marker::Copy for YearFormat {}
-impl ::core::clone::Clone for YearFormat {
- fn clone(&self) -> Self {
- *self
- }
-}