From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- .../src/Windows/UI/Xaml/Automation/Text/mod.rs | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 vendor/windows-sys/src/Windows/UI/Xaml/Automation/Text/mod.rs (limited to 'vendor/windows-sys/src/Windows/UI/Xaml/Automation/Text/mod.rs') diff --git a/vendor/windows-sys/src/Windows/UI/Xaml/Automation/Text/mod.rs b/vendor/windows-sys/src/Windows/UI/Xaml/Automation/Text/mod.rs new file mode 100644 index 000000000..3bc0d7034 --- /dev/null +++ b/vendor/windows-sys/src/Windows/UI/Xaml/Automation/Text/mod.rs @@ -0,0 +1,31 @@ +#[doc = "*Required features: `\"UI_Xaml_Automation_Text\"`*"] +#[repr(transparent)] +pub struct TextPatternRangeEndpoint(pub i32); +impl TextPatternRangeEndpoint { + pub const Start: Self = Self(0i32); + pub const End: Self = Self(1i32); +} +impl ::core::marker::Copy for TextPatternRangeEndpoint {} +impl ::core::clone::Clone for TextPatternRangeEndpoint { + fn clone(&self) -> Self { + *self + } +} +#[doc = "*Required features: `\"UI_Xaml_Automation_Text\"`*"] +#[repr(transparent)] +pub struct TextUnit(pub i32); +impl TextUnit { + pub const Character: Self = Self(0i32); + pub const Format: Self = Self(1i32); + pub const Word: Self = Self(2i32); + pub const Line: Self = Self(3i32); + pub const Paragraph: Self = Self(4i32); + pub const Page: Self = Self(5i32); + pub const Document: Self = Self(6i32); +} +impl ::core::marker::Copy for TextUnit {} +impl ::core::clone::Clone for TextUnit { + fn clone(&self) -> Self { + *self + } +} -- cgit v1.2.3