func (s *Window) SetTitle(title string) { C.SetWindowTitle(unsafe.Pointer(s.GetHwnd()), C.CString(title)) }
func osSetWindowTitle(window *Window, title string) { C.SetWindowTitle(C.int(window.handle), C.CString(title)) }