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:
Steven Edwards 2005-01-05 04:16:23 +00:00
parent 4e4b7cff0b
commit ab8ef4b325

View file

@ -308,8 +308,9 @@ NtUserSetClipboardData(UINT uFormat, HANDLE hMem, DWORD Unknown2)
HWND STDCALL HWND STDCALL
NtUserSetClipboardViewer(HWND hWndNewViewer) NtUserSetClipboardViewer(HWND hWndNewViewer)
{ {
UNIMPLEMENTED HWND hwndPrev = 0;
return 0; DbgPrint("NtUserSetClipboardViewer is UNIMPLEMENTED (%p): returning %p\n", hWndNewViewer, hwndPrev);
return hwndPrev;
} }
/* EOF */ /* EOF */