expose the platform-specific window handle (currently Win only)

This commit is contained in:
Ryan Stewart 2015-02-20 12:32:40 -08:00
parent 8e1d0f7a97
commit 25ce029cf6
5 changed files with 24 additions and 0 deletions

View file

@ -329,6 +329,10 @@ impl Window {
self.display as *mut libc::c_void
}
pub fn platform_window(&self) -> *mut libc::c_void {
unimplemented!()
}
pub fn get_api(&self) -> ::Api {
::Api::OpenGlEs
}