| 458 | } |
| 459 | |
| 460 | void Window_SetTitle(const cc_string* title) { |
| 461 | Window win = Window_Main.Handle.val; |
| 462 | char str[NATIVE_STR_LEN]; |
| 463 | String_EncodeUtf8(str, title); |
| 464 | XStoreName(win_display, win, str); |
| 465 | } |
| 466 | |
| 467 | static char clipboard_copy_buffer[256]; |
| 468 | static char clipboard_paste_buffer[256]; |
nothing calls this directly
no test coverage detected