GetClipboardViewer function user32
Retrieves the handle to the first window in the clipboard viewer chain.
To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-getclipboardviewer.
Implementation
Win32Result<HWND> GetClipboardViewer() {
final result_ = GetClipboardViewer_Wrapper();
return Win32Result(value: HWND(result_.value.ptr), error: result_.error);
}