Fix HINSTANCE returned by raw_window_handle on 64 bit Windows (#1841)

This commit is contained in:
Mads Marquart
2021-01-28 18:51:49 +01:00
committed by GitHub
parent 3f1e09ec0e
commit f79c01b0cf

View File

@@ -278,7 +278,7 @@ impl Window {
#[inline]
pub fn hinstance(&self) -> HINSTANCE {
unsafe { winuser::GetWindowLongW(self.hwnd(), winuser::GWL_HINSTANCE) as *mut _ }
unsafe { winuser::GetWindowLongPtrW(self.hwnd(), winuser::GWLP_HINSTANCE) as *mut _ }
}
#[inline]