summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Devices/Printers/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Devices/Printers/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Devices/Printers/mod.rs72
1 files changed, 0 insertions, 72 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Devices/Printers/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Devices/Printers/mod.rs
deleted file mode 100644
index 83ce2826a..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Devices/Printers/mod.rs
+++ /dev/null
@@ -1,72 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[cfg(feature = "Devices_Printers_Extensions")]
-pub mod Extensions;
-#[link(name = "windows")]
-extern "system" {}
-pub type IppAttributeError = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct IppAttributeErrorReason(pub i32);
-impl IppAttributeErrorReason {
- pub const RequestEntityTooLarge: Self = Self(0i32);
- pub const AttributeNotSupported: Self = Self(1i32);
- pub const AttributeValuesNotSupported: Self = Self(2i32);
- pub const AttributeNotSettable: Self = Self(3i32);
- pub const ConflictingAttributes: Self = Self(4i32);
-}
-impl ::core::marker::Copy for IppAttributeErrorReason {}
-impl ::core::clone::Clone for IppAttributeErrorReason {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type IppAttributeValue = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct IppAttributeValueKind(pub i32);
-impl IppAttributeValueKind {
- pub const Unsupported: Self = Self(0i32);
- pub const Unknown: Self = Self(1i32);
- pub const NoValue: Self = Self(2i32);
- pub const Integer: Self = Self(3i32);
- pub const Boolean: Self = Self(4i32);
- pub const Enum: Self = Self(5i32);
- pub const OctetString: Self = Self(6i32);
- pub const DateTime: Self = Self(7i32);
- pub const Resolution: Self = Self(8i32);
- pub const RangeOfInteger: Self = Self(9i32);
- pub const Collection: Self = Self(10i32);
- pub const TextWithLanguage: Self = Self(11i32);
- pub const NameWithLanguage: Self = Self(12i32);
- pub const TextWithoutLanguage: Self = Self(13i32);
- pub const NameWithoutLanguage: Self = Self(14i32);
- pub const Keyword: Self = Self(15i32);
- pub const Uri: Self = Self(16i32);
- pub const UriSchema: Self = Self(17i32);
- pub const Charset: Self = Self(18i32);
- pub const NaturalLanguage: Self = Self(19i32);
- pub const MimeMediaType: Self = Self(20i32);
-}
-impl ::core::marker::Copy for IppAttributeValueKind {}
-impl ::core::clone::Clone for IppAttributeValueKind {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type IppIntegerRange = *mut ::core::ffi::c_void;
-pub type IppPrintDevice = *mut ::core::ffi::c_void;
-pub type IppResolution = *mut ::core::ffi::c_void;
-#[repr(transparent)]
-pub struct IppResolutionUnit(pub i32);
-impl IppResolutionUnit {
- pub const DotsPerInch: Self = Self(0i32);
- pub const DotsPerCentimeter: Self = Self(1i32);
-}
-impl ::core::marker::Copy for IppResolutionUnit {}
-impl ::core::clone::Clone for IppResolutionUnit {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type IppSetAttributesResult = *mut ::core::ffi::c_void;
-pub type IppTextWithLanguage = *mut ::core::ffi::c_void;
-pub type Print3DDevice = *mut ::core::ffi::c_void;
-pub type PrintSchema = *mut ::core::ffi::c_void;