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/Documents/mod.rs | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 vendor/windows-sys/src/Windows/UI/Xaml/Documents/mod.rs (limited to 'vendor/windows-sys/src/Windows/UI/Xaml/Documents/mod.rs') diff --git a/vendor/windows-sys/src/Windows/UI/Xaml/Documents/mod.rs b/vendor/windows-sys/src/Windows/UI/Xaml/Documents/mod.rs new file mode 100644 index 000000000..ba9c9b6b2 --- /dev/null +++ b/vendor/windows-sys/src/Windows/UI/Xaml/Documents/mod.rs @@ -0,0 +1,64 @@ +pub type Block = *mut ::core::ffi::c_void; +pub type BlockCollection = *mut ::core::ffi::c_void; +pub type Bold = *mut ::core::ffi::c_void; +pub type ContactContentLinkProvider = *mut ::core::ffi::c_void; +pub type ContentLink = *mut ::core::ffi::c_void; +pub type ContentLinkInvokedEventArgs = *mut ::core::ffi::c_void; +pub type ContentLinkProvider = *mut ::core::ffi::c_void; +pub type ContentLinkProviderCollection = *mut ::core::ffi::c_void; +pub type Glyphs = *mut ::core::ffi::c_void; +pub type Hyperlink = *mut ::core::ffi::c_void; +pub type HyperlinkClickEventArgs = *mut ::core::ffi::c_void; +pub type Inline = *mut ::core::ffi::c_void; +pub type InlineCollection = *mut ::core::ffi::c_void; +pub type InlineUIContainer = *mut ::core::ffi::c_void; +pub type Italic = *mut ::core::ffi::c_void; +pub type LineBreak = *mut ::core::ffi::c_void; +#[doc = "*Required features: `\"UI_Xaml_Documents\"`*"] +#[repr(transparent)] +pub struct LogicalDirection(pub i32); +impl LogicalDirection { + pub const Backward: Self = Self(0i32); + pub const Forward: Self = Self(1i32); +} +impl ::core::marker::Copy for LogicalDirection {} +impl ::core::clone::Clone for LogicalDirection { + fn clone(&self) -> Self { + *self + } +} +pub type Paragraph = *mut ::core::ffi::c_void; +pub type PlaceContentLinkProvider = *mut ::core::ffi::c_void; +pub type Run = *mut ::core::ffi::c_void; +pub type Span = *mut ::core::ffi::c_void; +pub type TextElement = *mut ::core::ffi::c_void; +pub type TextHighlighter = *mut ::core::ffi::c_void; +pub type TextHighlighterBase = *mut ::core::ffi::c_void; +pub type TextPointer = *mut ::core::ffi::c_void; +#[repr(C)] +#[doc = "*Required features: `\"UI_Xaml_Documents\"`*"] +pub struct TextRange { + pub StartIndex: i32, + pub Length: i32, +} +impl ::core::marker::Copy for TextRange {} +impl ::core::clone::Clone for TextRange { + fn clone(&self) -> Self { + *self + } +} +pub type Typography = *mut ::core::ffi::c_void; +pub type Underline = *mut ::core::ffi::c_void; +#[doc = "*Required features: `\"UI_Xaml_Documents\"`*"] +#[repr(transparent)] +pub struct UnderlineStyle(pub i32); +impl UnderlineStyle { + pub const None: Self = Self(0i32); + pub const Single: Self = Self(1i32); +} +impl ::core::marker::Copy for UnderlineStyle {} +impl ::core::clone::Clone for UnderlineStyle { + fn clone(&self) -> Self { + *self + } +} -- cgit v1.2.3