summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintTicket/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintTicket/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintTicket/mod.rs49
1 files changed, 0 insertions, 49 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintTicket/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintTicket/mod.rs
deleted file mode 100644
index 9ca6be088..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintTicket/mod.rs
+++ /dev/null
@@ -1,49 +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 PrintTicketCapabilities = *mut ::core::ffi::c_void;
-pub type PrintTicketFeature = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct PrintTicketFeatureSelectionType(pub i32);
-impl PrintTicketFeatureSelectionType {
- pub const PickOne: Self = Self(0i32);
- pub const PickMany: Self = Self(1i32);
-}
-impl ::core::marker::Copy for PrintTicketFeatureSelectionType {}
-impl ::core::clone::Clone for PrintTicketFeatureSelectionType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type PrintTicketOption = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct PrintTicketParameterDataType(pub i32);
-impl PrintTicketParameterDataType {
- pub const Integer: Self = Self(0i32);
- pub const NumericString: Self = Self(1i32);
- pub const String: Self = Self(2i32);
-}
-impl ::core::marker::Copy for PrintTicketParameterDataType {}
-impl ::core::clone::Clone for PrintTicketParameterDataType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type PrintTicketParameterDefinition = *mut ::core::ffi::c_void;
-pub type PrintTicketParameterInitializer = *mut ::core::ffi::c_void;
-pub type PrintTicketValue = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct PrintTicketValueType(pub i32);
-impl PrintTicketValueType {
- pub const Integer: Self = Self(0i32);
- pub const String: Self = Self(1i32);
- pub const Unknown: Self = Self(2i32);
-}
-impl ::core::marker::Copy for PrintTicketValueType {}
-impl ::core::clone::Clone for PrintTicketValueType {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type WorkflowPrintTicket = *mut ::core::ffi::c_void;
-pub type WorkflowPrintTicketValidationResult = *mut ::core::ffi::c_void;