remove UNIMPLEMENTED from NtUserIsClipboardFormatAvailable and replace it with a DPRINT1 warning that it is not implemented. This change gets Irfanview working.

svn path=/trunk/; revision=9477
This commit is contained in:
Royce Mitchell III 2004-05-23 04:04:10 +00:00
parent 11a1d291a0
commit fffba95c47

View file

@ -227,7 +227,7 @@ NtUserGetPriorityClipboardFormat(UINT *paFormatPriorityList, INT cFormats)
BOOL STDCALL
NtUserIsClipboardFormatAvailable(UINT format)
{
UNIMPLEMENTED
DPRINT1("FIXME: NtUserIsClipboardFormatAvailable() is not implemented\n");
return 0;
}