(hwnd win.HWND)
| 2121 | } |
| 2122 | |
| 2123 | func windowFromHandle(hwnd win.HWND) Window { |
| 2124 | if wb := hwnd2WindowBase[hwnd]; wb != nil { |
| 2125 | return wb.window |
| 2126 | } |
| 2127 | |
| 2128 | return nil |
| 2129 | } |
| 2130 | |
| 2131 | func defaultWndProc(hwnd win.HWND, msg uint32, wParam, lParam uintptr) (result uintptr) { |
| 2132 | defer func() { |
no outgoing calls
no test coverage detected
searching dependent graphs…