Resolved a TODO in stdwndclass_windows.go about deferring WM_NCCREATE to DefWindowProc().

This commit is contained in:
Pietro Gagliardi 2014-06-04 01:17:59 -04:00
parent bc34836227
commit 5027a50845
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ func storeSysData(hwnd _HWND, uMsg uint32, wParam _WPARAM, lParam _LPARAM) _LRES
s := (*sysData)(unsafe.Pointer(saddr)) s := (*sysData)(unsafe.Pointer(saddr))
s.hwnd = hwnd s.hwnd = hwnd
} }
// TODO is this correct for WM_NCCREATE? I think the above link does it but I'm not entirely sure... // then regardless of what happens, defer to DefWindowProc() (if you trace the execution of the above links, this is what they do)
return defWindowProc(hwnd, uMsg, wParam, lParam) return defWindowProc(hwnd, uMsg, wParam, lParam)
} }