]> git.proxmox.com Git - rustc.git/blob - vendor/windows-sys-0.28.0/src/Windows/Media/Render/mod.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / vendor / windows-sys-0.28.0 / src / Windows / Media / Render / mod.rs
1 #![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
2 #[link(name = "windows")]
3 extern "system" {}
4 #[repr(transparent)]
5 pub struct AudioRenderCategory(pub i32);
6 impl AudioRenderCategory {
7 pub const Other: Self = Self(0i32);
8 pub const ForegroundOnlyMedia: Self = Self(1i32);
9 pub const BackgroundCapableMedia: Self = Self(2i32);
10 pub const Communications: Self = Self(3i32);
11 pub const Alerts: Self = Self(4i32);
12 pub const SoundEffects: Self = Self(5i32);
13 pub const GameEffects: Self = Self(6i32);
14 pub const GameMedia: Self = Self(7i32);
15 pub const GameChat: Self = Self(8i32);
16 pub const Speech: Self = Self(9i32);
17 pub const Movie: Self = Self(10i32);
18 pub const Media: Self = Self(11i32);
19 }
20 impl ::core::marker::Copy for AudioRenderCategory {}
21 impl ::core::clone::Clone for AudioRenderCategory {
22 fn clone(&self) -> Self {
23 *self
24 }
25 }