diff options
Diffstat (limited to 'src/win32')
-rw-r--r-- | src/win32/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs index 65374b7..a5df94c 100644 --- a/src/win32/mod.rs +++ b/src/win32/mod.rs @@ -2,7 +2,7 @@ use std::kinds::marker::NoSend; use std::sync::Mutex; use std::sync::atomics::AtomicBool; use std::ptr; -use {Event, Hints, MonitorID}; +use {Event, Hints}; mod event; mod ffi; @@ -17,6 +17,8 @@ pub struct Window { nosend: NoSend, } +pub struct MonitorID(uint); + /// Stores the list of all the windows. /// Only available on callback thread. local_data_key!(pub WINDOWS_LIST: Mutex<Vec<(ffi::HWND, Sender<Event>)>>) |