Re[2]: Move notifies around to match native

2005-04-16 Thread Vitaliy Margolen
Thursday, April 14, 2005, 2:49:45 PM, you wrote: {Set,Get}DCBrushColor do something different to what you expect. They set the DC_BRUSH colour, not the colour of the current brush selected into the DC. You can get select it into the DC using SelectObject(GetStockObject(DC_BRUSH)). The

Re: Broken cross-build, again.

2005-04-16 Thread Saulius Krasuckas
* On Thu, 14 Apr 2005, Jacek Caban wrote: *Saulius Krasuckas wrote: And the second question is: should it go to the include/wine/test.h or some separate header like a include/wine/strings.h. wine/test.h doesn't seems to me to be a good place for it. Also, as it's used only in tests,

Re: [NtQuerySystemInformation #1] Fixes + tests

2005-04-16 Thread Eric Pouech
Paul Vriens a écrit : Hi, this is a first go at some unit tests and related fixes for NtQuerySystemInformation. The ultimate goal is to get SysInternal's Process Explorer running. you may need (to get P.E. running) more than just a better support for some Nt*Info* functions. For examples, NT

Re: Make VIRTUAL_SetFaultHandler an internal function

2005-04-16 Thread Eric Pouech
Alexandre Julliard a écrit : Dimitrie O. Paun [EMAIL PROTECTED] writes: I guess this has no chance of going away until we have a DIB engine, which is not even on the horizon. Actually it should be possible to handle the fault using a vectored handler, without requiring internal functions at all.

Re: Make VIRTUAL_SetFaultHandler an internal function

2005-04-16 Thread Alexandre Julliard
Eric Pouech [EMAIL PROTECTED] writes: If you suppose no app would ever set its own vectored handler at the beginnnig of the vector... One could argue that no well behaved application should do it, but well... That would only be a problem if the app tries to handle the exception. I think

Re: TreeView fix endless loop and colors with custom draw

2005-04-16 Thread Alexandre Julliard
Vitaliy Margolen [EMAIL PROTECTED] writes: + if (((tvItem-mask TVIF_CHILDREN ) (originalItem.cChildren != wineItem-cChildren ) ) || + ((tvItem-mask TVIF_IMAGE) (originalItem.iImage != wineItem-iImage) + wineItem-iImage

Re: widl: generate header when proxy/stub is generated

2005-04-16 Thread Alexandre Julliard
Juan Lang [EMAIL PROTECTED] writes: ChangeLog: generate header when proxy/stub is generated to prevent #include(null) from appearing in generated file Surely there's a better way to fix this than by forcing generation of the header even when it's not requested. -- Alexandre Julliard [EMAIL

Re: Threading Issues with DInput/Joysticks

2005-04-16 Thread Benjamin Cutler
I was having this issue with one of my games too, but this patch seems to have fixed it. However, now I'm hitting an error in kernel32. (System Shock 2, for the curious.) What traces should I turn on to help track this down? wine: Unhandled exception (thread 0009), starting debugger... WineDbg

Re: USB status ...

2005-04-16 Thread Uwe Bonnes
Lars == Lars Segerlund [EMAIL PROTECTED] writes: Lars What is the status of wines USB support ? Lars I have an IDE for a developement board and I really would like to Lars flash it from Linux, ( I don't have windows), and this uses USB to Lars talk to the board. Is there

Re: wine.inf: Better powrprof patch

2005-04-16 Thread Vincent Béron
Le sam 16/04/2005 à 07:00, Benjamin Cutler a écrit : Oops, last one was missing commas, wasn't it? I guess you also need to add powrprof to the list of sections in [DefaultInstall] at the start of wine.inf. Vincent

Re: [DINPUT] add keyboard data format

2005-04-16 Thread Dmitry Timoshkov
Robert Reif [EMAIL PROTECTED] wrote: +DIOBJECTDATAFORMAT dfDIKeyboard[] = { + { GUID_Key,0,DIDFT_OPTIONAL|DIDFT_BUTTON|DIDFT_MAKEINSTANCE(0),0}, Is it possible to make it 'static const'? -- Dmitry.

Re: Mouse warp questions

2005-04-16 Thread Stefan Dösinger
Are you sure that by disabling MOUSE_HACK, it fixes your problem ? If yes, it's more a side effect of what exactly MOUSE_HACK is than a real fix. Yes, it fixes the problem. The mouse wasn't moved once during my 2 minute test, but it looks like this is because the mouse warp is broken with

Re: [DINPUT] add keyboard data format

2005-04-16 Thread Robert Reif
Robert Reif wrote: Add keyboard data format. With Dmitry's const changes. Index: dlls/dinput/data_formats.c === RCS file: /home/wine/wine/dlls/dinput/data_formats.c,v retrieving revision 1.2 diff -p -u -r1.2 data_formats.c ---

Implementing get_default_drive_device under Solaris

2005-04-16 Thread Robert Lunnon
I am trying to Implement get_default_drive_device for Solaris but its unclear to me what this is supposed to do. It get passed the links in ~/.wine/dosdevices then tries to determine a mount point for them. Reading the Linux code the function only seems to return a mount point if the

Still more fun?

2005-04-16 Thread Jakob Eriksson
Has anybody else thought of using DLLs (like ReactOS' dlls) as a compatibility layer to different Windows versions? I.e. when you distribute your Windows app, you also throw in a bunch of DLLs that implement lots of functionality you aren't sure exists on your target otherwise. (Windows 2003

Fun projects

2005-04-16 Thread Jakob Eriksson
Wasn't there talk about making DLLs for use in Windows, to export a native Windows desktop to an X11 server? //Jakob

Re: Fun projects

2005-04-16 Thread Steven Edwards
--- Jakob Eriksson [EMAIL PROTECTED] wrote: Wasn't there talk about making DLLs for use in Windows, to export a native Windows desktop to an X11 server? There was someone who did this by compiling parts of Wine under Cygwin with Detours from research.microsoft.com Look around the mailing list

Re: Still more fun?

2005-04-16 Thread Steven Edwards
Hi, --- Jakob Eriksson [EMAIL PROTECTED] wrote: Has anybody else thought of using DLLs (like ReactOS' dlls) as a compatibility layer to different Windows versions? I think it would be good in testing Wine/ReactOS vs Windows for Winelib applications developers. You can make a dummy file in

Re: Make VIRTUAL_SetFaultHandler an internal function

2005-04-16 Thread Dimitrie O. Paun
On Thu, Apr 14, 2005 at 03:05:36PM +0200, Alexandre Julliard wrote: Actually it should be possible to handle the fault using a vectored handler, without requiring internal functions at all. Completely untested (what do people use to test DIB handling?), but it compiles. Is something like this