user32: Added AddClipboardFormatListener/RemoveClipboardFormatListener stubs.

This commit is contained in:
Nikolay Sivov 2014-03-19 10:29:47 +04:00 committed by Alexandre Julliard
parent 038438ad69
commit 961d26418a
2 changed files with 20 additions and 0 deletions

View File

@ -580,3 +580,21 @@ DWORD WINAPI GetClipboardSequenceNumber(VOID)
TRACE("returning %x\n", seqno);
return seqno;
}
/**************************************************************************
* AddClipboardFormatListener (USER32.@)
*/
BOOL WINAPI AddClipboardFormatListener(HWND hwnd)
{
FIXME("%p: stub\n", hwnd);
return TRUE;
}
/**************************************************************************
* RemoveClipboardFormatListener (USER32.@)
*/
BOOL WINAPI RemoveClipboardFormatListener(HWND hwnd)
{
FIXME("%p: stub\n", hwnd);
return TRUE;
}

View File

@ -1,4 +1,5 @@
@ stdcall ActivateKeyboardLayout(long long)
@ stdcall AddClipboardFormatListener(long)
@ stdcall AdjustWindowRect(ptr long long)
@ stdcall AdjustWindowRectEx(ptr long long long)
@ stdcall AlignRects(ptr long long long)
@ -575,6 +576,7 @@
@ stdcall RegisterWindowMessageW(wstr)
@ stdcall ReleaseCapture()
@ stdcall ReleaseDC(long long)
@ stdcall RemoveClipboardFormatListener(long)
@ stdcall RemoveMenu(long long long)
@ stdcall RemovePropA(long str)
@ stdcall RemovePropW(long wstr)