summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stdwndclass_windows.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdwndclass_windows.go b/stdwndclass_windows.go
index 09cce8d..f4004e4 100644
--- a/stdwndclass_windows.go
+++ b/stdwndclass_windows.go
@@ -64,7 +64,7 @@ func storeSysData(hwnd _HWND, uMsg uint32, wParam _WPARAM, lParam _LPARAM) _LRES
s := (*sysData)(unsafe.Pointer(saddr))
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)
}