Merge pull request #183 from ozkriff/master

android: Updated for rust fc2ba1393 2015-01-03
This commit is contained in:
tomaka 2015-01-04 20:01:57 +01:00
commit 2174177fda

View file

@ -1,6 +1,7 @@
extern crate android_glue;
use libc;
use std::sync::mpsc::{Receiver, channel};
use {CreationError, Event, WindowBuilder};
use CreationError::OsError;
use events::ElementState::{Pressed, Released};
@ -23,8 +24,8 @@ pub struct MonitorID;
mod ffi;
pub fn get_available_monitors() -> RingBuf <MonitorID> {
let rb = RingBuf::new();
rb.push_back(MonitorId);
let mut rb = RingBuf::new();
rb.push_back(MonitorID);
rb
}