| Commit in reactos/subsys/win32k/ntuser on MAIN | |||
| clipboard.c | +1 | -1 | 1.8 -> 1.9 | 
remove UNIMPLEMENTED from NtUserIsClipboardFormatAvailable and replace it with a DPRINT1 warning that it is not implemented. This change gets Irfanview working.
diff -u -r1.8 -r1.9 --- clipboard.c 10 May 2004 23:05:13 -0000 1.8 +++ clipboard.c 23 May 2004 04:04:10 -0000 1.9 @@ -227,7 +227,7 @@
 BOOL STDCALL
 NtUserIsClipboardFormatAvailable(UINT format)
 {
- UNIMPLEMENTED
+ DPRINT1("FIXME: NtUserIsClipboardFormatAvailable() is not implemented\n");
return 0; }