aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32
diff options
context:
space:
mode:
authorTomaka17 <pierre.krieger1708@gmail.com>2014-07-27 22:31:00 +0200
committerTomaka17 <pierre.krieger1708@gmail.com>2014-07-27 22:36:28 +0200
commitd4e334aecb1f6d6f85752ddbbf0a2da688036109 (patch)
tree85748b680816891e71bb1cc30943f1fa4f97aaa4 /src/win32
parent0d122cec47799e5c5198d3d4068c9ed43ce9b83c (diff)
downloadglutin-d4e334aecb1f6d6f85752ddbbf0a2da688036109.tar.gz
glutin-d4e334aecb1f6d6f85752ddbbf0a2da688036109.zip
get/set_size() -> get/set_inner/outer_size()
Diffstat (limited to 'src/win32')
-rw-r--r--src/win32/mod.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs
index 7230ee4..b5e507b 100644
--- a/src/win32/mod.rs
+++ b/src/win32/mod.rs
@@ -221,11 +221,15 @@ impl Window {
}
}
- pub fn get_size(&self) -> (uint, uint) {
+ pub fn get_inner_size(&self) -> (uint, uint) {
unimplemented!()
}
- pub fn set_size(&self, x: uint, y: uint) {
+ pub fn get_outer_size(&self) -> (uint, uint) {
+ unimplemented!()
+ }
+
+ pub fn set_inner_size(&self, x: uint, y: uint) {
use libc;
unsafe {