This is the mail archive of the cygwin-xfree@cygwin.com mailing list for the Cygwin XFree86 project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: XWin causes Windows apps to hang(?)


On Sun, 22 Feb 2004, Alexander Gottwald wrote:

> winProcSetSelectionOwner - OpenClipboard () failed: 00000000
> winProcSetSelectionOwner - OpenClipboard () failed: 00000000
> 
> 0 is ERROR_SUCCESS which means "The operation completed successfully"
> I guess the clipboard was opened successfully but returned a wrong
> error condition. After bailing out we leave the clipboard in an open
> state and other programs can not access it anymore.
> 
> I guess this is worth a try:
> 
> from winclipboardwrappers.c:461
> 
>   /* Access the Windows clipboard */
>   if (!OpenClipboard (g_hwndClipboard))
>     {
>       DWORD errorcode = GetLastError();
>       ErrorF ("winProcSetSelectionOwner - OpenClipboard () failed: %08x\n",
>             (int) errorcode);
>       if (errorcode != ERROR_SUCCESS)
>         goto winProcSetSelectionOwner_Done;
>     }

This was a deadend too. The call to EmptyClipboard now returned an error
stating the clipboard was not open.

bye
	ago
-- 
 Alexander.Gottwald@s1999.tu-chemnitz.de 
 http://www.gotti.org           ICQ: 126018723
 Chemnitzer Linux-Tag 2004 - 6. und 7. März 2004
 http://www.tu-chemnitz.de/linux/tag


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]