iced-yoda/winit/src/settings/windows.rs

10 lines
299 B
Rust
Raw Normal View History

2019-11-30 21:32:46 +09:00
#![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>,
}