Switch win32 implementation to new design

This commit is contained in:
Pierre Krieger 2017-06-26 21:21:13 +02:00
parent 05cd9f2114
commit 61ba6dce7f
6 changed files with 1203 additions and 1054 deletions

View file

@ -18,7 +18,7 @@ pub trait WindowExt {
impl WindowExt for Window {
#[inline]
fn get_hwnd(&self) -> *mut libc::c_void {
self.window.platform_window()
self.window.hwnd() as *mut _
}
}