| 373 | } |
| 374 | |
| 375 | void Clipboard_SetText(const cc_string* value) { |
| 376 | |
| 377 | if (WinOpenClipbrd(habAnchor)) { |
| 378 | WinEmptyClipbrd(habAnchor); |
| 379 | WinSetClipbrdData(habAnchor, (ULONG) value->buffer, CF_TEXT, CFI_POINTER); |
| 380 | WinCloseClipbrd(habAnchor); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | void Window_Show(void) { |
| 385 | WinShowWindow(hwndFrame, TRUE); |
no outgoing calls
no test coverage detected