summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintSupport/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintSupport/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintSupport/mod.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintSupport/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintSupport/mod.rs
deleted file mode 100644
index f9da5027e..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Graphics/Printing/PrintSupport/mod.rs
+++ /dev/null
@@ -1,35 +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 PrintSupportExtensionSession = *mut ::core::ffi::c_void;
-pub type PrintSupportExtensionTriggerDetails = *mut ::core::ffi::c_void;
-pub type PrintSupportPrintDeviceCapabilitiesChangedEventArgs = *mut ::core::ffi::c_void;
-pub type PrintSupportPrintTicketValidationRequestedEventArgs = *mut ::core::ffi::c_void;
-pub type PrintSupportSessionInfo = *mut ::core::ffi::c_void;
-pub type PrintSupportSettingsActivatedEventArgs = *mut ::core::ffi::c_void;
-pub type PrintSupportSettingsUISession = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct SettingsLaunchKind(pub i32);
-impl SettingsLaunchKind {
- pub const JobPrintTicket: Self = Self(0i32);
- pub const UserDefaultPrintTicket: Self = Self(1i32);
-}
-impl ::core::marker::Copy for SettingsLaunchKind {}
-impl ::core::clone::Clone for SettingsLaunchKind {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(transparent)]
-pub struct WorkflowPrintTicketValidationStatus(pub i32);
-impl WorkflowPrintTicketValidationStatus {
- pub const Resolved: Self = Self(0i32);
- pub const Conflicting: Self = Self(1i32);
- pub const Invalid: Self = Self(2i32);
-}
-impl ::core::marker::Copy for WorkflowPrintTicketValidationStatus {}
-impl ::core::clone::Clone for WorkflowPrintTicketValidationStatus {
- fn clone(&self) -> Self {
- *self
- }
-}