mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Make NtUserSetClipboardViewer return something that applications can deal with. This makes the vncviewer qusi-work.
svn path=/trunk/; revision=12817
This commit is contained in:
parent
4e4b7cff0b
commit
ab8ef4b325
1 changed files with 3 additions and 2 deletions
|
@ -308,8 +308,9 @@ NtUserSetClipboardData(UINT uFormat, HANDLE hMem, DWORD Unknown2)
|
|||
HWND STDCALL
|
||||
NtUserSetClipboardViewer(HWND hWndNewViewer)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
return 0;
|
||||
HWND hwndPrev = 0;
|
||||
DbgPrint("NtUserSetClipboardViewer is UNIMPLEMENTED (%p): returning %p\n", hWndNewViewer, hwndPrev);
|
||||
return hwndPrev;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue