diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-03-28 11:24:18 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-03-28 11:24:18 +0100 |
commit | 125ebed031e4c660ffbece8aeb03938044ec7a96 (patch) | |
tree | 821ed56e144076363da249a23f94c92eaabe71a4 /src/win32 | |
parent | d6ebaaaf5cbb1839e74c3c7c0573b1f842c59e6b (diff) | |
parent | b27306f97221bb7db52775321abbe3daa0ae9ccb (diff) | |
download | glutin-125ebed031e4c660ffbece8aeb03938044ec7a96.tar.gz glutin-125ebed031e4c660ffbece8aeb03938044ec7a96.zip |
Merge pull request #333 from tomaka/fix
Change grab_cursor and ungrab_cursor to set_cursor_state
Diffstat (limited to 'src/win32')
-rw-r--r-- | src/win32/mod.rs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs index 9daf0c3..41004b3 100644 --- a/src/win32/mod.rs +++ b/src/win32/mod.rs @@ -4,6 +4,7 @@ use std::ffi::CString; use std::sync::mpsc::Receiver; use libc; use {CreationError, Event, MouseCursor}; +use CursorState; use BuilderAttribs; @@ -255,12 +256,8 @@ impl Window { unimplemented!() } - pub fn grab_cursor(&self) -> Result<(), String> { - unimplemented!() - } - - pub fn ungrab_cursor(&self) { - unimplemented!() + pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> { + unimplemented!(); } pub fn hidpi_factor(&self) -> f32 { |