SendMessage sends a message to the window and returns the result.
(msg uint32, wParam, lParam uintptr)
| 821 | |
| 822 | // SendMessage sends a message to the window and returns the result. |
| 823 | func (wb *WindowBase) SendMessage(msg uint32, wParam, lParam uintptr) uintptr { |
| 824 | return win.SendMessage(wb.hWnd, msg, wParam, lParam) |
| 825 | } |
| 826 | |
| 827 | // Name returns the name of the *WindowBase. |
| 828 | func (wb *WindowBase) Name() string { |
no test coverage detected