android: Updated for rust fc2ba1393 2015-01-03

This commit is contained in:
Andrey Lesnikov 2015-01-04 21:49:00 +03:00
parent 0937d809b5
commit 2b7e74d55a

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
}