Add platform specific settings

This commit is contained in:
hatoo 2019-11-30 21:32:46 +09:00
parent f0a857ddde
commit 5077f1dc6a
9 changed files with 106 additions and 0 deletions

View 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>,
}