blob: 76b8d067756c0a63980b3817c2b7620127121efe (
plain) (
blame)
1
2
3
4
5
6
7
8
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>,
}
|