diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:32 +0000 |
commit | 4547b622d8d29df964fa2914213088b148c498fc (patch) | |
tree | 9fc6b25f3c3add6b745be9a2400a6e96140046e9 /vendor/windows-sys-0.28.0/src/Windows/Graphics/mod.rs | |
parent | Releasing progress-linux version 1.66.0+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-4547b622d8d29df964fa2914213088b148c498fc.tar.xz rustc-4547b622d8d29df964fa2914213088b148c498fc.zip |
Merging upstream version 1.67.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Graphics/mod.rs')
-rw-r--r-- | vendor/windows-sys-0.28.0/src/Windows/Graphics/mod.rs | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Graphics/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Graphics/mod.rs deleted file mode 100644 index c08cb7f0e..000000000 --- a/vendor/windows-sys-0.28.0/src/Windows/Graphics/mod.rs +++ /dev/null @@ -1,76 +0,0 @@ -#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)] -#[cfg(feature = "Graphics_Capture")] -pub mod Capture; -#[cfg(feature = "Graphics_DirectX")] -pub mod DirectX; -#[cfg(feature = "Graphics_Display")] -pub mod Display; -#[cfg(feature = "Graphics_Effects")] -pub mod Effects; -#[cfg(feature = "Graphics_Holographic")] -pub mod Holographic; -#[cfg(feature = "Graphics_Imaging")] -pub mod Imaging; -#[cfg(feature = "Graphics_Printing")] -pub mod Printing; -#[cfg(feature = "Graphics_Printing3D")] -pub mod Printing3D; -#[link(name = "windows")] -extern "system" {} -#[repr(C)] -pub struct DisplayAdapterId { - pub LowPart: u32, - pub HighPart: i32, -} -impl ::core::marker::Copy for DisplayAdapterId {} -impl ::core::clone::Clone for DisplayAdapterId { - fn clone(&self) -> Self { - *self - } -} -#[repr(C)] -pub struct DisplayId { - pub Value: u64, -} -impl ::core::marker::Copy for DisplayId {} -impl ::core::clone::Clone for DisplayId { - fn clone(&self) -> Self { - *self - } -} -pub type IGeometrySource2D = *mut ::core::ffi::c_void; -#[repr(C)] -pub struct PointInt32 { - pub X: i32, - pub Y: i32, -} -impl ::core::marker::Copy for PointInt32 {} -impl ::core::clone::Clone for PointInt32 { - fn clone(&self) -> Self { - *self - } -} -#[repr(C)] -pub struct RectInt32 { - pub X: i32, - pub Y: i32, - pub Width: i32, - pub Height: i32, -} -impl ::core::marker::Copy for RectInt32 {} -impl ::core::clone::Clone for RectInt32 { - fn clone(&self) -> Self { - *self - } -} -#[repr(C)] -pub struct SizeInt32 { - pub Width: i32, - pub Height: i32, -} -impl ::core::marker::Copy for SizeInt32 {} -impl ::core::clone::Clone for SizeInt32 { - fn clone(&self) -> Self { - *self - } -} |