summaryrefslogtreecommitdiffstats
path: root/winit/src/settings/windows.rs
diff options
context:
space:
mode:
Diffstat (limited to 'winit/src/settings/windows.rs')
-rw-r--r--winit/src/settings/windows.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/winit/src/settings/windows.rs b/winit/src/settings/windows.rs
new file mode 100644
index 00000000..76b8d067
--- /dev/null
+++ b/winit/src/settings/windows.rs
@@ -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>,
+}