feat(client): reexport win32_display_data

This commit reexports the `win32_display_data` crate so that any 3rd
party app that needs it can get it through the `komorebi-client` without
having to keep manually synchronizing it with the version used by komorebi.
This commit is contained in:
alex-ds13
2025-03-23 01:57:01 +00:00
committed by Jeezy
parent cb60e91842
commit 30fbc1ae73
2 changed files with 2 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ pub use komorebi::core::WindowKind;
pub use komorebi::monitor::Monitor;
pub use komorebi::monitor_reconciliator::MonitorNotification;
pub use komorebi::ring::Ring;
pub use komorebi::win32_display_data;
pub use komorebi::window::Window;
pub use komorebi::window_manager_event::WindowManagerEvent;
pub use komorebi::workspace::Workspace;

View File

@@ -53,6 +53,7 @@ pub use core::*;
pub use process_command::*;
pub use process_event::*;
pub use static_config::*;
pub use win32_display_data;
pub use window::*;
pub use window_manager::*;
pub use window_manager_event::*;