win32: remove unimplemented!() from platform_display()
This commit is contained in:
parent
059821a99c
commit
6ece84f5c0
1 changed files with 4 additions and 1 deletions
|
|
@ -215,7 +215,10 @@ impl Window {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn platform_display(&self) -> *mut libc::c_void {
|
pub fn platform_display(&self) -> *mut libc::c_void {
|
||||||
unimplemented!()
|
// What should this return on win32?
|
||||||
|
// It could be GetDC(NULL), but that requires a ReleaseDC()
|
||||||
|
// to avoid leaking the DC.
|
||||||
|
ptr::null_mut()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn platform_window(&self) -> *mut libc::c_void {
|
pub fn platform_window(&self) -> *mut libc::c_void {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue