mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 22:31:30 +11:00
Merge pull request #614 from tomaka/windowproxy-sync
Fix WindowProxy not being Send and Sync on win32
This commit is contained in:
commit
7ab495b698
|
@ -84,6 +84,9 @@ pub struct WindowProxy {
|
||||||
hwnd: winapi::HWND,
|
hwnd: winapi::HWND,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsafe impl Send for WindowProxy {}
|
||||||
|
unsafe impl Sync for WindowProxy {}
|
||||||
|
|
||||||
impl WindowProxy {
|
impl WindowProxy {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn wakeup_event_loop(&self) {
|
pub fn wakeup_event_loop(&self) {
|
||||||
|
|
Loading…
Reference in a new issue