WndProc is the window procedure of the window. When implementing your own WndProc to add or modify behavior, call the WndProc of the embedded window for messages you don't handle yourself.
(hwnd win.HWND, msg uint32, wParam, lParam uintptr)
| 371 | // When implementing your own WndProc to add or modify behavior, call the |
| 372 | // WndProc of the embedded window for messages you don't handle yourself. |
| 373 | WndProc(hwnd win.HWND, msg uint32, wParam, lParam uintptr) uintptr |
| 374 | |
| 375 | // X returns the x coordinate of the Window, relative to the screen for |
| 376 | // RootWidgets like *MainWindow or *Dialog and relative to the parent for |
no outgoing calls
no test coverage detected