Add platform specific settings
This commit is contained in:
parent
f0a857ddde
commit
5077f1dc6a
9 changed files with 106 additions and 0 deletions
9
winit/src/settings/windows.rs
Normal file
9
winit/src/settings/windows.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#![cfg(target_os = "windows")]
|
||||
//! Platform specific settings for Windows.
|
||||
|
||||
/// The platform specific window settings of an application.
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
|
||||
pub struct PlatformSpecific {
|
||||
/// Parent Window
|
||||
pub parent: Option<winapi::shared::windef::HWND>,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue