ATL creates wrong registry entries

2005-11-14 Thread Cihan Altinay
Hi, For example instead of creating the key HKCR\CLSID\{63623F01-D9C7-11D5-A76B-8657580F} I get HKCR\CLSID\{ and HKCR\CLSID\63623F01-D9C7-11D5-A76B-8657580F} Maybe the trace output from atl helps finding the reason: trace:atl:string_register (0x4038bf40 L"HKCR\r\n{\r\n\tPSRServe.P

Re: [comctl32] implement header callback support (HDN_GETDISPINFO notification)

2005-11-14 Thread Dimi Paun
On Mon, 2005-11-14 at 19:02 -0700, Vitaliy Margolen wrote: > Monday, November 14, 2005, 6:31:29 PM, Raphael wrote: > > Changelog: > > - implement implement header callback support (HDN_GETDISPINFO > > notification): > > Patch comments: > Please use the commonly accepted coding style in wine: > -

Re: request small changes to winecfg

2005-11-14 Thread Mike Hearn
On Mon, 14 Nov 2005 19:05:09 +0100, wino wrote: > I dont know where I have this expectation from but certainly a habit I > have formed using other software. Would it be more intuitive if the enter > key was trapped by the editbox and triggered a click on the "Add" button? > It certainly comes

Re: [comctl32] implement header callback support (HDN_GETDISPINFO notification)

2005-11-14 Thread Vitaliy Margolen
Monday, November 14, 2005, 6:31:29 PM, Raphael wrote: > Changelog: > - implement implement header callback support (HDN_GETDISPINFO notification): Patch comments: Please use the commonly accepted coding style in wine: - Indents are 4 spaces (and spaces, not tabs) - Curly brackets go to their own

Re: GetQueueStatus: unknown flag 0x4000

2005-11-14 Thread Cihan Altinay
[EMAIL PROTECTED] wrote: On Mon, 14 Nov 2005 09:48:50 +0100, Uwe Bonnes <[EMAIL PROTECTED]> wrote: "Cihan" == Cihan Altinay <[EMAIL PROTECTED]> writes: Cihan> Hi, When running G-Ware[1] I get a lot of these: Cihan> fixme:key:GetQueueStatus QS_ flags (4000) are not handled

Re: RESENT: [msvcrt] I64 and ll support

2005-11-14 Thread Jesse Allen
On 11/14/05, Raphael <[EMAIL PROTECTED]> wrote: > > better patch than previous: now Jesse can put his code into #else / #endif :) > > Changelog: > - add configure check to detect support of %ll modifier on libc printf > - add I64 modifier support on msvcrt *printf functions > - add I32 modifi

RESENT: [msvcrt] I64 and ll support

2005-11-14 Thread Raphael
On Wednesday 09 November 2005 02:15, Raphael wrote: > Hi, > > Changelog: > - add I64 modifier support on msvcrt *printf functions > - correct ll modifier support on msvcrt *printf functions > - correct tests > > this should correct bug 3759 and 2075 (and many others) > > Now for libc who don'

Re: usb driver proxy

2005-11-14 Thread Vitaliy Margolen
Monday, November 14, 2005, 1:23:54 PM, Uwe Bonnes wrote: >> "Marcus" == Marcus Meissner <[EMAIL PROTECTED]> writes: > ... > Marcus> We have some work going on on hooking new devices (openable by > Marcus> CreateFile() from the make-safedisc-work crowd). > Are these patches available so

Re: RFC: Presentation for Desktop Architecture meeting

2005-11-14 Thread Lionel Ulmer
OK, here is my wish list from the X.org guys: - relative mouse movement reporting. This is a must-have to have proper DInput support without the hacks we currently have in the code. Extension already discussed with X people on the mailing lists and they seem OK with it. Now we just need

Re: RFC: Presentation for Desktop Architecture meeting

2005-11-14 Thread Robert Shearman
Jeremy White wrote: Wine Project Overview Purpose: Implement Windows API for Unix Wine loader – run Windows Applications Winelib – port Windows applications Deliverables (the dream) All PE format files (.exe + .dll) 'just work' with binary loader. C/C++ code recompiles and 'just works' with Wine

Re: RFC: Presentation for Desktop Architecture meeting

2005-11-14 Thread H. Verbeet
Wrt X.Org stuff, relative mouse movement reporting would probably be usefull to have, as described here: http://wiki.winehq.org/DInput Perhaps there's room for that in the upcoming XInput redesign (http://wiki.x.org/wiki/XInputHotplug) ?

Re: Fwd: MDI/sub window support in DirectX

2005-11-14 Thread Robert Shearman
Oliver Stieber wrote: Hi, Just a quick question about adding MDI/sub window support to DirectX, is it ok to just get the DC of the window and then blit a dib over it or is there a faster/better way? What are we doing about drawing window borders? If you just blit to the DC for the clie

Re: New ati driver problems

2005-11-14 Thread Stefan Dösinger
Hello, > ATI drivers have some odd problems with mipmaps that could appear as > missing textures, and last week I had a 'new' problem crop up that caused > the driver to hang the system, even with old drivers on code that had been > in wined3d for months so I'd wouldn't expect any kind of stabilit

Fwd: MDI/sub window support in DirectX

2005-11-14 Thread Oliver Stieber
Hi, Just a quick question about adding MDI/sub window support to DirectX, is it ok to just get the DC of the window and then blit a dib over it or is there a faster/better way? What are we doing about drawing window borders? Oliver. ___

Re: usb driver proxy

2005-11-14 Thread Uwe Bonnes
> "Marcus" == Marcus Meissner <[EMAIL PROTECTED]> writes: ... Marcus> We have some work going on on hooking new devices (openable by Marcus> CreateFile() from the make-safedisc-work crowd). Are these patches available somewhere? -- Uwe Bonnes[EMAIL PROTECTED] Instit

Re: A small bounty for fixing a bug

2005-11-14 Thread Willie Sippel
Some more info: I tried to 'break' x11drv to always return 32 for GetDeviceCaps(BITSPIXEL), which breaks Mirage in an interesting way. It now draws the splash/ startup menu background correcty (dark gray, instead of the broken dark blue it usually shows), as well as the small video clip at the t

Re: CreateProcess command line parsing

2005-11-14 Thread Francois Gouget
On Thu, 10 Nov 2005, Rufoo wrote: I am looking at dlls/kernel/process.cc:get_file_name that parses the command line. It seems to handle the case where the application name has spaces in it but the application name is not enclosed in double quotes. According to MSDN documentation, CreateProcess r

Re: About stderr for usage messages

2005-11-14 Thread Robert Shearman
Vitaly Lipatov wrote: We are use stderr for print usage or info message in wine programs such as eject winedump winebuild wine main (dlls/kernel/process.c) It is broken behavior: info messages usually expected from stdout stream. Will I do patch agaist it? Info messages are better using st

[kernel/tests/thread] Better error information + win9x fix

2005-11-14 Thread Paul Vriens
Hi, some small changes. Doesn't make the test succeed on windows, but now we show at least the correct error information. Changelog: Corrected last error information Make sure we can run the tests on win9x Cheers, Paul. Index: dlls/kernel/tests/thread.c

Re: request small changes to winecfg

2005-11-14 Thread Lionel Ulmer
> 1/ emulate desktop is still at a "historic" size of 640,480 which at least > on my screen is too small to display winecfg's natural height next time I > run it. Would 600x800 be a better default? I need to resend my patch which keeps the previous Desktop version set when disabling it. This

Re: RFC: Presentation for Desktop Architecture meeting

2005-11-14 Thread Alexandre Julliard
"Dimi Paun" <[EMAIL PROTECTED]> writes: > I agree that would be nice if we can say that the > .dll.so format is stable. With the winecrt0 and > debug channel work that Alexander did lately I think > we are close. But if we are there yet, only he knows. I don't have any plans to change the format,

Re: RFC: Presentation for Desktop Architecture meeting

2005-11-14 Thread Dimi Paun
From: "Jeremy White" <[EMAIL PROTECTED]> > Well, to me, ABI stability is whether or not a comctl32.dll.so > from Wine 0.9.1 can be dropped in and 'just work' in > a Wine 0.9.8 environment. More to the point, it's whether > or not my winelib 'foo.dll.so' can be so dropped in. And > my gut sense wa

request small changes to winecfg

2005-11-14 Thread wino
Hi, now that winecfg is reaching maturity it is a great tool, but two things may merit a small change. 1/ emulate desktop is still at a "historic" size of 640,480 which at least on my screen is too small to display winecfg's natural height next time I run it. Would 600x800 be a better def

Re: ds[pw] files generated to build winetest

2005-11-14 Thread Francois Gouget
On Sun, 13 Nov 2005, Saulius Krasuckas wrote: There are quite a some of them in my tree, which 'cvs update' complains about: ? wine/dlls/advapi32/tests/advapi32_test.dsp ? wine/dlls/advpack/tests/advpack_test.dsp ? wine/dlls/comctl32/tests/comctl32_test.dsp ... ? wine/dlls/winsock/tests/ws2_32

Re: [winecfg] add sound driver test

2005-11-14 Thread Steven Edwards
Hi, On 11/14/05, Peter Lemenkov <[EMAIL PROTECTED]> wrote: > Using mp3 creates a legal issues on almost all major Linux-distros. I don't see a legal issue for decoding. Its only been for encoding that they have charged a license fee. Isn't the file wine/dlls/msacm/winemp3 A mp3 decoder we alrea

Test framework RFC (Was: Re: CRYPT32/tests: don't crash on win98)

2005-11-14 Thread Jakob Eriksson
Saulius Krasuckas wrote: * On Mon, 14 Nov 2005, Jakob Eriksson wrote: * Saulius Krasuckas wrote: isNT should be set by testing real behaviour of API, not by using GetVersion(). The recommended thing to do is check for something that can hint of bad things to happen. Ye

Re: CRYPT32/tests: don't crash on win98

2005-11-14 Thread Jakob Eriksson
Saulius Krasuckas wrote: AFAIR, he or someone else told me that isNT should be set by testing real behaviour of API, not by using GetVersion(). As the behaviour difference materializes itself in a shape of unhandled exception, we should catch it. Are we able do it in Wine easily? I think th

Re: GetQueueStatus: unknown flag 0x4000

2005-11-14 Thread wino
On Mon, 14 Nov 2005 09:48:50 +0100, Uwe Bonnes <[EMAIL PROTECTED]> wrote: "Cihan" == Cihan Altinay <[EMAIL PROTECTED]> writes: Cihan> Hi, When running G-Ware[1] I get a lot of these: Cihan> fixme:key:GetQueueStatus QS_ flags (4000) are not handled Cihan> Interestingly I coul

Re: cant install IE5.5 on 0.9.1

2005-11-14 Thread wino
On Mon, 14 Nov 2005 10:40:33 +0100, Ray Jones <[EMAIL PROTECTED]> wrote: Heya, for me IE60 installs with a "fresh and clean" wine (CVS 11/11) and just "ADVPACK.DLL" set to "native". I've tested it with WINE-Version Win98, 2000 and XP. For Win98 I've done a minimalistic installation like Sidenet d

Re: New ati driver problems

2005-11-14 Thread Oliver Stieber
--- Stefan Dösinger <[EMAIL PROTECTED]> wrote: > Hello, > > I've updated my fglrx driver yesterday, and I am seeing some weird problems > with Direct3D. I don't know if this is a driver bug or regression at all. > > With battlefield 1942 and the old d3d8 engine, some in-game textures are > wh

Re: RFC: Presentation for Desktop Architecture meeting

2005-11-14 Thread Dmitry Timoshkov
"Jeremy White" <[EMAIL PROTECTED]> wrote: > Any first cut items? I'm sure the x.org guys will be there > in force, and I've always had the sense that they'd be happy > to help us, if we just asked. How about inability of X server to handle pixmaps larger than 32767 x 32767 and an ugly workaround

Re: RFC: Presentation for Desktop Architecture meeting

2005-11-14 Thread Jeremy White
>>The Open Office file is available for download here: >> http://dl.codeweavers.com >> access key 'deskarch' > > > Yeah, not there :( Sorry; uploaded to the wrong directory. Fixed now. > > I'd say we have the best ABI stability, since we follow > MS, and they typically don't break it. It's

Re: Measuring Wine's API completeness

2005-11-14 Thread Dimi Paun
On Mon, 2005-11-14 at 03:32 -0600, Alexandre Julliard wrote: > The only way to know that something is done is to write a test case > for it and check the behavior against Windows. MSDN cannot be trusted, > and marking code as DONE just because it follows what happens to be in > the doc today is ver

Re: usb driver proxy

2005-11-14 Thread Marcus Meissner
On Mon, Nov 14, 2005 at 12:58:12PM +0200, Maris Paupe wrote: > Hi, > First of all, sorry for my bad English. I have a USB device which doesn' t > have a driver in linux, I wrote it as kernel module, but because I want to > run windows software under wine which uses this device it seems that I will

Re: [winecfg] add sound driver test

2005-11-14 Thread Robert Reif
Steven Edwards wrote: Hi, On 11/13/05, Robert Reif <[EMAIL PROTECTED]> wrote: Changelog: - add a simple sound driver test Download the test wave file from: This is 3 megs. Could we not use a higher level studd and use winemp3 to docode a mp3 that can be embedded in a resource script

Re: New ati driver problems

2005-11-14 Thread Evil
I upgraded too, but don't see any problem with CounterStrike, HL2, or anything else I have. If you suspect it's driver related, how about quickly backing down to 8.18 again and re-testing? Are you still using the same xorg.conf file, or did you go through fglrxconfig again? -Jesse Stefan Dösin

Re: usb driver proxy

2005-11-14 Thread Saulius Krasuckas
* On Mon, 14 Nov 2005, Maris Paupe wrote: > > I have a USB device which doesn' t have a driver in linux, I wrote it as > kernel module, but because I want to run windows software under wine > which uses this device it seems that I will need to write something like > proxy in wine (like audio an

Re: Brain Storming Regarding Winapt - Package Management for Windows

2005-11-14 Thread Liam Kurmos
i think that whilst windows could benefit from good package management, atleast for it's open-source projects, I'm not sure it's worth developing windows as an open-source platform, or whether or not this would ultimately be good for open-source. If you're looking for a repo for commercial proj

usb driver proxy

2005-11-14 Thread Maris Paupe
Hi, First of all, sorry for my bad English. I have a USB device which doesn' t have a driver in linux, I wrote it as kernel module, but because I want to run windows software under wine which uses this device it seems that I will need to write something like proxy in wine (like audio and video driv

Re: New ati driver problems

2005-11-14 Thread Stefan Dösinger
Hello, > wined3d (and older d3d8 code) don't use, for now, fbo and vbo. > we only check if it's supported (while parsing extensions list). > > Seems anothers ATI bugs and i can't help because i only have NVidia cards > :) (you should wait oliver to fix/bypass it) Now I think that it's really a new

Re: CRYPT32/tests: don't crash on win98

2005-11-14 Thread Saulius Krasuckas
* On Mon, 14 Nov 2005, Saulius Krasuckas wrote: > * On Mon, 14 Nov 2005, Jakob Eriksson wrote: > > * Saulius Krasuckas wrote: > > > > > > isNT should be set by testing real behaviour of API, not by using > > > GetVersion(). > > > > The recommended thing to do is check for something that can hi

Re: kernel/comm.c - page fault in thread

2005-11-14 Thread Cihan Altinay
Uwe Bonnes wrote: Cihan> I am currently in Australia so I guess it wouldn't be possible Cihan> although it would help a lot. It's only a RS232 9 pin connector with 3 solder blobs. If you have a solder iron, easily done yourself. Ok, I'll see if it is still necessary. Cihan> I am

Re: cant install IE5.5 on 0.9.1

2005-11-14 Thread Ray Jones
piments.com> writes: > > On Mon, 14 Nov 2005 01:35:43 +0100, Vitaliy Margolen > kievinfo.com> wrote: > > > Sunday, November 13, 2005, 5:10:38 PM, wino piments.com wrote: > >> Hi, > > > >> trying to minimise the number of preinstall tools and scripts to run > >> stuff > >> on wine-0.9.1 >

Re: kernel/comm.c - page fault in thread

2005-11-14 Thread Uwe Bonnes
> "Cihan" == Cihan Altinay <[EMAIL PROTECTED]> writes: Cihan> Uwe Bonnes wrote: >> If you need input into the serial port, consider using some kind of >> loopback. Either use the plug with the appropriate pins shorted , or >> use two serial lines with a crossover cable. >>

Re: Measuring Wine's API completeness

2005-11-14 Thread Alexandre Julliard
Dimi Paun <[EMAIL PROTECTED]> writes: > With one exception: knowing that something is complete as far as > documentation allows us to know is rather important. This is a > fairly immutable point in the development of a function, and having > reliable information about that is golden. Otherwise, on

Re: CRYPT32/tests: don't crash on win98

2005-11-14 Thread Saulius Krasuckas
* On Mon, 14 Nov 2005, Jakob Eriksson wrote: > * Saulius Krasuckas wrote: > > > > isNT should be set by testing real behaviour of API, not by using > > GetVersion(). > > The recommended thing to do is check for something that can hint > of bad things to happen. Yes, plus that something and G

Re: GetQueueStatus: unknown flag 0x4000

2005-11-14 Thread Uwe Bonnes
> "Cihan" == Cihan Altinay <[EMAIL PROTECTED]> writes: Cihan> Hi, When running G-Ware[1] I get a lot of these: Cihan> fixme:key:GetQueueStatus QS_ flags (4000) are not handled Cihan> Interestingly I couldn't find any information about what the flag Cihan> 0x4000 is meant t

Re: New ati driver problems

2005-11-14 Thread Raphael
On Monday 14 November 2005 08:45, Jonathan Adamczewski wrote: > Stefan Dösinger wrote: > >>>I've updated my fglrx driver yesterday > >> > >> From which version? (and to which version? Latest is 8.19.10) > > > >I've updated from 8.18.8 to 8.19.10 > > fbo was already present in 8.18.8 (the functiona