aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/mod.rs
diff options
context:
space:
mode:
authorPierre Krieger <pierre.krieger1708@gmail.com>2015-03-26 17:04:01 +0100
committerPierre Krieger <pierre.krieger1708@gmail.com>2015-03-26 17:15:18 +0100
commit3d692870e25521871067e9756804127bd80f584d (patch)
treee3c865de4daf314f6d963a09f73371beb714570c /src/win32/mod.rs
parentd6ebaaaf5cbb1839e74c3c7c0573b1f842c59e6b (diff)
downloadglutin-3d692870e25521871067e9756804127bd80f584d.tar.gz
glutin-3d692870e25521871067e9756804127bd80f584d.zip
Change grab_cursor and ungrab_cursor to set_cursor_state
Diffstat (limited to 'src/win32/mod.rs')
-rw-r--r--src/win32/mod.rs9
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 {