]> git.proxmox.com Git - rustc.git/blob - vendor/windows-sys/src/Windows/Media/Playlists/mod.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / windows-sys / src / Windows / Media / Playlists / mod.rs
1 pub type Playlist = *mut ::core::ffi::c_void;
2 #[doc = "*Required features: `\"Media_Playlists\"`*"]
3 #[repr(transparent)]
4 pub struct PlaylistFormat(pub i32);
5 impl PlaylistFormat {
6 pub const WindowsMedia: Self = Self(0i32);
7 pub const Zune: Self = Self(1i32);
8 pub const M3u: Self = Self(2i32);
9 }
10 impl ::core::marker::Copy for PlaylistFormat {}
11 impl ::core::clone::Clone for PlaylistFormat {
12 fn clone(&self) -> Self {
13 *self
14 }
15 }