From fffba95c4776358a86ed9a2ed7442ac9981c6f44 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Sun, 23 May 2004 04:04:10 +0000 Subject: [PATCH] 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 --- reactos/subsys/win32k/ntuser/clipboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/win32k/ntuser/clipboard.c b/reactos/subsys/win32k/ntuser/clipboard.c index f6c23314c16..43d3053949e 100644 --- a/reactos/subsys/win32k/ntuser/clipboard.c +++ b/reactos/subsys/win32k/ntuser/clipboard.c @@ -227,7 +227,7 @@ NtUserGetPriorityClipboardFormat(UINT *paFormatPriorityList, INT cFormats) BOOL STDCALL NtUserIsClipboardFormatAvailable(UINT format) { - UNIMPLEMENTED + DPRINT1("FIXME: NtUserIsClipboardFormatAvailable() is not implemented\n"); return 0; }