On Fri, 2006-05-12 at 22:07 +0200, Eric Pouech wrote:
> > This bug crept into between May 7 01:04 and May 11 00:48. It seems to
> > happens when the program http://appdb.winehq.org/appview.php?appId=1957
> > attempts to initialize the serial port. I'll get more details later,
> > and file a bug
It just occurred to me that we don't need a new test case.
Current tests don't pass on my box either.
Although the result line shows 0 failure.
there are error messages during the test.
[EMAIL PROTECTED] wine-0.9.12]# tools/runtest -p
dlls/user/tests/user32_test.exe.so
dlls/user/tests/clipboard.
A simple test
-
#include "windows.h"
int APIENTRY WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmd, int show)
{
HGLOBAL hmem;
LPSTR lpstr;
OpenClipboard(GetDesktopWindow());
EmptyClipboard();
hmem = GlobalAlloc(GMEM_MOVEABLE, 6);
Francois Gouget <[EMAIL PROTECTED]> writes:
> On Fri, 12 May 2006, Alexandre Julliard wrote:
> [...]
>> There's no point, since we haven't yet found a platform that doesn't
>> have them. The defines only exist because of things that autoconf does
>> behind the scenes, we don't explicitly check for
HelloI started CorelDraw with the given WINEDEBUG options but there is no chance to get success with this options. It took me more than 2 hours just to start Corel and generated about 1.5GB of log output. Even moving the mouse generated more than 5000 lines of debug output. So I removed the +relay
This bug crept into between May 7 01:04 and May 11 00:48. It seems to
happens when the program http://appdb.winehq.org/appview.php?appId=1957
attempts to initialize the serial port. I'll get more details later,
and file a bug report if required. This is just a heads up.
just sent a fix for t
On Fri, 12 May 2006, Alexandre Julliard wrote:
[...]
There's no point, since we haven't yet found a platform that doesn't
have them. The defines only exist because of things that autoconf does
behind the scenes, we don't explicitly check for these headers.
And yet there are some places where we
On 5/12/06, Mike Hearn <[EMAIL PROTECTED]> wrote:
The problem is that appdb comments are not a conversation, they areusually just remarks on how well something works or how to make theprogram work. This advice quickly becomes irrelevant as new versionsof Wine are released.
Given that somebody readi
Francois Gouget <[EMAIL PROTECTED]> writes:
> Either they are conditional and then having ifdefs in only 1/10 of the
> time is useless.
>
> Or they are not and then there's no point in having HAVE_SYS_TYPES_H &
> co.
>
> Any objection to patches that would switch to strict ifdef enforcement
> for
The problem is that appdb comments are not a conversation, they are
usually just remarks on how well something works or how to make the
program work. This advice quickly becomes irrelevant as new versions
of Wine are released.
Given that somebody reading the page will want only information and
no
On 5/12/06, Mike Hearn <[EMAIL PROTECTED]> wrote:
I'm sure this was raised before, but why does the AppDB show comments fromoldest to newest, not newest to oldest? This ordering makes no sense to me.thanks -mikeFor the same reason that we write our emails below the quote. It's easier to follow the
* Jakob Eriksson <[EMAIL PROTECTED]> [12/05/06, 08:06:34]:
> Vitaliy Margolen wrote:
> >Thursday, May 11, 2006, 12:45:46 AM, blackcrack wrote:
> >
> >>Hy Peoples,
> >>
> >
> >
> >>a idea again... why not use FreeDos in Wine...
> >>as dos for older programms... :
> >>
> >
> >You are welc
On 12/05/06, Kuba Ober <[EMAIL PROTECTED]> wrote:
Lying is one thing, another thing is that there might be some apps that
actually read the cursor, modify the bitmap and use that modified bitmap for
a new cursor. In that case we'd better make sure that we actually give the
app the real image.
Co
Vitaliy Margolen wrote:
Thursday, May 11, 2006, 12:45:46 AM, blackcrack wrote:
Hy Peoples,
a idea again... why not use FreeDos in Wine...
as dos for older programms... :
You are welcome to start sending patches. Oh wait, it's GPL.
So is Linux.
regards,
Jakob
i wish to be added to the mail listProdigy/MSN Search. Consigue lo que buscas más rápido Haz clic aquí.
I'm sure this was raised before, but why does the AppDB show comments from
oldest to newest, not newest to oldest? This ordering makes no sense to me.
thanks -mike
On Fri, 12 May 2006, Huw Davies wrote:
[...]
There is a HAVE_SYS_TYPES_H though. However since HAVE_SYS_TYPES
isn't defined, couldn't you remove the #include too?
Good point. I've removed it and will post an updated patch.
However while investigating this I discovered this comment in
winapi_
On Thursday 11 May 2006 15:53, Mike Hearn wrote:
> On Tue, 09 May 2006 13:49:53 +0200, Stefan Dösinger wrote:
> > I noticed that wine always uses it's own mouse cursor image looking like
> > the standard windows cursor. Is there a reason why the X server mouse
> > cursor isn't used?
>
> Doubtful ..
Wine's clipboard implementation is a bit of a mistery to
a lot of people :)
Ulrich, it would be really great if you can spare a few
minutes and do a bit of a write up on it (no matter how
small initially) on the wiki:
http://wiki.winehq.org/CopyAndPaste
I'm sure it would help lots of people
On 5/12/06, Roland Kaeser <[EMAIL PROTECTED]> wrote:
>The only major issues that I'm aware of are coping and pasting OLE embedded
>objects. That should be taken care of when Rob is finished his COM work.>IMO 633, 2382 and 5061 are not really copy and paste bugs. They are caused>by problems translat
Mike Hearn <[EMAIL PROTECTED]> writes:
> On Fri, 12 May 2006 10:53:03 +0200, Uwe Bonnes wrote:
>> I don't find any explanation or usage hints on wine-devel.
>
> My guess from reading the code is that whilst Wine is running, any HAL
> hotplug events will be magically handled correctly. For instanc
On Fri, May 12, 2006 at 06:20:13AM +, Roland Kaeser wrote:
> >The only major issues that I'm aware of are coping and pasting OLE embedded
> >objects. That should be taken care of when Rob is finished his COM work.
>
> >IMO 633, 2382 and 5061 are not really copy and paste bugs. They are caused
On Fri, May 12, 2006 at 04:16:28PM +0800, qingdoa daoo wrote:
> Now that you brought it up, clipboard in wine does have some limitations. e.g.
> when a process calls OpenClipboard(hwnd), Windows doesn't seem to care if the
> hwnd is owned by a thread of the calling process. A process doesn't even h
"qingdoa daoo" <[EMAIL PROTECTED]> wrote:
Although I never fully understood the inner working of Wine's clipboard
implementation, I did try messing with it to see if I could overcome the
limitation - with very limited success:-)
Perhaps then you could add the tests showing what's wrong with c
On Fri, 12 May 2006 10:53:03 +0200, Uwe Bonnes wrote:
> I don't find any explanation or usage hints on wine-devel.
My guess from reading the code is that whilst Wine is running, any HAL
hotplug events will be magically handled correctly. For instance, run
Notepad, look at the file open dialog box
On Thursday 11 May 2006 11:48, Alexandre Julliard wrote:
> "Marcin Kardas" <[EMAIL PROTECTED]> writes:
> > On http://wiki.winehq.org/OpenGL there is written, that someone has
> > tried to fix this bug like this - map Windows' window with X window
> > one to one (it was my first idea). But there is
On Thursday 11 May 2006 14:24, Tomas Carnecky wrote:
> Alexandre Julliard wrote:
> > Tomas Carnecky <[EMAIL PROTECTED]> writes:
> >> As far as I understand, the only way to access x11drv is through GDI
> >> (which implements ExtEscape), would your proposed change require new
> >> functions for ope
> -#ifdef HAVE_SYS_TYPES
> #include
> -#endif
There is a HAVE_SYS_TYPES_H though. However since HAVE_SYS_TYPES
isn't defined, couldn't you remove the #include too?
Huw.
--
Huw Davies
[EMAIL PROTECTED]
Hallo,
I don't find any explanation or usage hints on wine-devel.
Thanks
--
Uwe Bonnes[EMAIL PROTECTED]
Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt
- Tel. 06151 162516 Fax. 06151 164321 --
Now that you brought it up, clipboard in wine does have some limitations. e.g.
when a process calls OpenClipboard(hwnd), Windows doesn't seem to care if the
hwnd is owned by a thread of the calling process. A process doesn't even have
to have a window in order to grab the clipboard and put somethi
30 matches
Mail list logo