summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys/src/Windows/Media/DialProtocol
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:21 +0000
commit4e8199b572f2035b7749cba276ece3a26630d23e (patch)
treef09feeed6a0fe39d027b1908aa63ea6b35e4b631 /vendor/windows-sys/src/Windows/Media/DialProtocol
parentAdding upstream version 1.66.0+dfsg1. (diff)
downloadrustc-4e8199b572f2035b7749cba276ece3a26630d23e.tar.xz
rustc-4e8199b572f2035b7749cba276ece3a26630d23e.zip
Adding upstream version 1.67.1+dfsg1.upstream/1.67.1+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows-sys/src/Windows/Media/DialProtocol')
-rw-r--r--vendor/windows-sys/src/Windows/Media/DialProtocol/mod.rs70
1 files changed, 0 insertions, 70 deletions
diff --git a/vendor/windows-sys/src/Windows/Media/DialProtocol/mod.rs b/vendor/windows-sys/src/Windows/Media/DialProtocol/mod.rs
deleted file mode 100644
index e3b339f82..000000000
--- a/vendor/windows-sys/src/Windows/Media/DialProtocol/mod.rs
+++ /dev/null
@@ -1,70 +0,0 @@
-pub type DialApp = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Media_DialProtocol\"`*"]
-#[repr(transparent)]
-pub struct DialAppLaunchResult(pub i32);
-impl DialAppLaunchResult {
- pub const Launched: Self = Self(0i32);
- pub const FailedToLaunch: Self = Self(1i32);
- pub const NotFound: Self = Self(2i32);
- pub const NetworkFailure: Self = Self(3i32);
-}
-impl ::core::marker::Copy for DialAppLaunchResult {}
-impl ::core::clone::Clone for DialAppLaunchResult {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[doc = "*Required features: `\"Media_DialProtocol\"`*"]
-#[repr(transparent)]
-pub struct DialAppState(pub i32);
-impl DialAppState {
- pub const Unknown: Self = Self(0i32);
- pub const Stopped: Self = Self(1i32);
- pub const Running: Self = Self(2i32);
- pub const NetworkFailure: Self = Self(3i32);
-}
-impl ::core::marker::Copy for DialAppState {}
-impl ::core::clone::Clone for DialAppState {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type DialAppStateDetails = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Media_DialProtocol\"`*"]
-#[repr(transparent)]
-pub struct DialAppStopResult(pub i32);
-impl DialAppStopResult {
- pub const Stopped: Self = Self(0i32);
- pub const StopFailed: Self = Self(1i32);
- pub const OperationNotSupported: Self = Self(2i32);
- pub const NetworkFailure: Self = Self(3i32);
-}
-impl ::core::marker::Copy for DialAppStopResult {}
-impl ::core::clone::Clone for DialAppStopResult {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type DialDevice = *mut ::core::ffi::c_void;
-#[doc = "*Required features: `\"Media_DialProtocol\"`*"]
-#[repr(transparent)]
-pub struct DialDeviceDisplayStatus(pub i32);
-impl DialDeviceDisplayStatus {
- pub const None: Self = Self(0i32);
- pub const Connecting: Self = Self(1i32);
- pub const Connected: Self = Self(2i32);
- pub const Disconnecting: Self = Self(3i32);
- pub const Disconnected: Self = Self(4i32);
- pub const Error: Self = Self(5i32);
-}
-impl ::core::marker::Copy for DialDeviceDisplayStatus {}
-impl ::core::clone::Clone for DialDeviceDisplayStatus {
- fn clone(&self) -> Self {
- *self
- }
-}
-pub type DialDevicePicker = *mut ::core::ffi::c_void;
-pub type DialDevicePickerFilter = *mut ::core::ffi::c_void;
-pub type DialDeviceSelectedEventArgs = *mut ::core::ffi::c_void;
-pub type DialDisconnectButtonClickedEventArgs = *mut ::core::ffi::c_void;
-pub type DialReceiverApp = *mut ::core::ffi::c_void;