Re: d3dxof: return correct value for IDirectXFileDataImpl_GetType

2007-11-08 Thread Roderick Colenbrander
IDirectXFileDataImpl_GetType should return DXFILEERR_BADVALUE on failure, not S_FALSE This patch fixes bug 10355 http://msdn2.microsoft.com/en-us/library/bb174490.aspx Sure this could fix that bug but it not a real fix. D3dxof.dll is mostly a stub and its real functionality (loading

Re: svchost: Implementation of svchost

2007-11-08 Thread Robert Shearman
Roy Shea wrote: Changelog: * Implementation of svchost You've got a lot of global functions in this patch that should be static. -- Rob Shearman

Re: wininet: initialize a buffer

2007-11-08 Thread Alexandre Julliard
Lei Zhang [EMAIL PROTECTED] writes: Valgrind is complaining we are doing strcmp() on the buffer without initializing it. You should fix the code to not do the strcmp when we don't have a valid buffer, instead of hiding the bug by clearing memory. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wininet: Fully initialize a variable

2007-11-08 Thread Alexandre Julliard
Juan Lang [EMAIL PROTECTED] writes: static void COOKIE_crackUrlSimple(LPCWSTR lpszUrl, LPWSTR hostName, int hostNameLen, LPWSTR path, int pathLen) { -URL_COMPONENTSW UrlComponents; +URL_COMPONENTSW UrlComponents = { 0 }; -UrlComponents.lpszExtraInfo = NULL; -

Re: Problem with client manually starting services

2007-11-08 Thread Robert Shearman
Roy Shea wrote: Howdy All, I'm developing missing services in Wine and am running into problems with how Wine starts services. In Windows a service can be started using net start service name, assuming that the service is properly added to the registry. In Wine it appears that the user

Re: #winehq admin troubles

2007-11-08 Thread feba thatl
Tom, you can try to guilt me, but I don't care. There are two sides to this. Either you think that #winehq is a support channel for end users, and should if not cater to them, at least treat them with some respect until they've proved that they deserve none, or you think that #winehq is a channel

Re: %fs, %gs on AROS hosted

2007-11-08 Thread Marcus Meissner
On Wed, Nov 07, 2007 at 09:25:51PM +0100, Staf Verhaegen wrote: On Wed, 07 Nov 2007 08:37:34 +0100, Marcus Meissner [EMAIL PROTECTED] wrote: On Tue, Nov 06, 2007 at 10:17:12PM +0100, Staf Verhaegen wrote: Hello wine developers, Win32 (and so Wine) uses %fs as the thread selector.

Re: Bugs in dlls/wsock32/socket.c

2007-11-08 Thread Gerald Pfeifer
On Sun, 4 Nov 2007, Juan Lang wrote: Heh - no, that's not the intended purpose ;) I'll send a patch. Cool, thanks a bunch! :-) Gerald

RE: d3dxof: return correct value for IDirectXFileDataImpl_GetType

2007-11-08 Thread EA Durbin
It is still returning the wrong value, S_FALSE is not in the possible list of return values, and this causes wine to crash. Date: Thu, 8 Nov 2007 12:40:19 +0100 From: [EMAIL PROTECTED] Subject: Re: d3dxof: return correct value for IDirectXFileDataImpl_GetType To: wine-devel@winehq.org

valgrind/urlmon http/variable question

2007-11-08 Thread Koshelev, Misha Vladislavo
Hi Dan et al., So I just wanted to let you know that I have looked somewhat at one (the only as far as I saw) of the valgrind results related to HttpProtocol in urlmon, and basically it involves passing a pointer to a PROTOCOLDATA from a local variable inside a function to the ProtocolSink

Re: #winehq admin troubles

2007-11-08 Thread Dan Kegel
On Nov 7, 2007 9:42 PM, Edward Savage [EMAIL PROTECTED] wrote: Furthermore, I'd like to add the comment that the majority of the time Vitamin is perfectly calm and collected in his moderating, I'd like to stress this. Though some times he acts far outside what is required of him, no user in

Re: Develop .h for Wine by looking Microsoft Platform SDK

2007-11-08 Thread Pau Garcia i Quiles
Quoting John Klehm [EMAIL PROTECTED]: On 11/7/07, Stefan Dösinger [EMAIL PROTECTED] wrote: Am Mittwoch, 7. November 2007 01:00:54 schrieb King InuYasha: It is not legal at all. Using Microsoft Platform SDK header code is not under the GNU General Public License version 2.0 or its listed

Typing Chinese Online On FireFox

2007-11-08 Thread Jiang,Yi
I developped a site for Typing Chinese Online: http://www.typingChinese.com. It works on FireFox, IE, Mac. On test, I found FireFox is the fastest and used much less memory! Regards to all, Jiang,Yi

Re: Problem with client manually starting services

2007-11-08 Thread Robert Shearman
Roy Shea wrote: Specifying test_service.exe in the registry causes the service to fail since CreateProcessW is unable to locate the file. Finally, setting the registry value to svchost.exe.so works without any errors. Unfortunately, this last version is not compatible with Windows registry

Re: Problem with client manually starting services

2007-11-08 Thread Roy Shea
On Thu, Nov 08, 2007 at 12:21:42PM -0800, Roy Shea wrote: On Thu, Nov 08, 2007 at 12:00:28PM +, Robert Shearman wrote: Roy Shea wrote: Howdy All, I'm developing missing services in Wine and am running into problems with how Wine starts services. In Windows a service can be started

Re: [1/6] WineD3D: Only glBindAttribLocation used attributes

2007-11-08 Thread Stefan Dösinger
Am Donnerstag, 8. November 2007 22:54:49 schrieb Mirek Slugeň: You can easily test performance with Nvidia SDK demo AntiAliasingWithTransparency.exe not every game or application is affected by this regression. Every affected application is using PS 3.0 (NFS ProStreet, Call of Duty 4, Unreal

Re: [1/6] WineD3D: Only glBindAttribLocation used attributes

2007-11-08 Thread Stefan Dösinger
Am Donnerstag, 8. November 2007 22:54:49 schrieb Mirek Slugeň: Stefan Dösinger napsal(a): It is caused by those patches (they depends on each other): [2/6] WineD3D: Make pixel shader input an array [3/6] WineD3D: Pixel Shader varying indexing [4/6] WineD3D: Add a max varyings member to

Re: [1/6] WineD3D: Only glBindAttribLocation used attributes

2007-11-08 Thread Mirek Slugeň
Hi, there is big performance drop in some games (NFS ProStreet) with your latest patches (exactly this set), do you know why? Should I do some regression testing and find critical patch? Mirek Slugen Stefan Dösinger napsal(a):

Re: [1/6] WineD3D: Only glBindAttribLocation used attributes

2007-11-08 Thread Mirek Slugeň
Stefan Dösinger napsal(a): Am Donnerstag, 8. November 2007 22:54:49 schrieb Mirek Slugeň: You can easily test performance with Nvidia SDK demo AntiAliasingWithTransparency.exe not every game or application is affected by this regression. Every affected application is using PS 3.0

Re: WineD3D: flush gl buffers are blt to drawable [attempt2]

2007-11-08 Thread Stefan Dösinger
Am Donnerstag, 8. November 2007 23:40:18 schrieb Roderick Colenbrander: Hi, This patch makes sure the gl buffer is flushed after blitting to the screen. This fixes bug 9826 where traces of old frames appeared due to this. You really shouldn't do this unconditionally, it is only needed if two

Re: [1/6] WineD3D: Only glBindAttribLocation used attributes

2007-11-08 Thread Stefan Dösinger
Am Donnerstag, 8. November 2007 20:12:48 schrieb Mirek Slugeň: Hi, there is big performance drop in some games (NFS ProStreet) with your latest patches (exactly this set), do you know why? Should I do some regression testing and find critical patch? A regression test would be nice indeed.

Re: Problem with client manually starting services

2007-11-08 Thread Roy Shea
On Thu, Nov 08, 2007 at 12:00:28PM +, Robert Shearman wrote: Roy Shea wrote: Howdy All, I'm developing missing services in Wine and am running into problems with how Wine starts services. In Windows a service can be started using net start service name, assuming that the service is

Re: [1/6] WineD3D: Only glBindAttribLocation used attributes

2007-11-08 Thread Mirek Slugeň
Stefan Dösinger napsal(a): Am Donnerstag, 8. November 2007 20:12:48 schrieb Mirek Slugeň: Hi, there is big performance drop in some games (NFS ProStreet) with your latest patches (exactly this set), do you know why? Should I do some regression testing and find critical patch?

Re: [1/6] WineD3D: Only glBindAttribLocation used attributes

2007-11-08 Thread Mirek Slugeň
Stefan Dösinger napsal(a): Am Donnerstag, 8. November 2007 22:54:49 schrieb Mirek Slugeň: Stefan Dösinger napsal(a): It is caused by those patches (they depends on each other): [2/6] WineD3D: Make pixel shader input an array [3/6] WineD3D: Pixel Shader varying indexing [4/6]

Valgrind results for Oct 8: lots of hangs?!

2007-11-08 Thread Dan Kegel
Data online at http://kegel.com/wine/valgrind/20071108/ For some reason, today I had to do 'wineserver -k' about five times (yesterday and the day before only once). And one of those times was during a d3d9 test which took over / hung the screen; not even ctl-alt-backspace helped, I actually

valgrind/urlmon http/variable question

2007-11-08 Thread Misha Koshelev
Hi Dan et al., So I just wanted to let you know that I have looked somewhat at one (the only as far as I saw) of the valgrind results related to HttpProtocol in urlmon, and basically it involves passing a pointer to a PROTOCOLDATA from a local variable inside a function to the

Re: valgrind results updated

2007-11-08 Thread Dmitry Timoshkov
Dan Kegel [EMAIL PROTECTED] wrote: I've updated http://kegel.com/wine/valgrind/ Today's results are at http://kegel.com/wine/valgrind/20071103/ The only difference from yesterday is I've added suppressions for the most common memory leaks, on the theory that it's easier to see the

Re: wininet: skip strcmp() in a test if the returned len is wrong

2007-11-08 Thread Dmitry Timoshkov
Lei Zhang [EMAIL PROTECTED] wrote: We'll skip doing strcmp() on a potentially uninitialized buffer if the returned length is wrong. - todo_wine ok(!strcmp(useragent,buffer),Got wrong user agent string %s instead of %s\n,buffer,useragent); - todo_wine ok(len == strlen(useragent),Got wrong

Successful Virtualization startup looking for engineers with system level Windows and Linux experience

2007-11-08 Thread Richard Offer
We are a well-funded software startup in the virtualization space that is looking to hire several engineers with system level experience in Windows and Linux - ideally in combination. I can't tell you what you'd be doing but you can be re-assured that since we are long-term open source

Re: valgrind results updated

2007-11-08 Thread Dan Kegel
On Nov 8, 2007 6:46 PM, Dmitry Timoshkov [EMAIL PROTECTED] wrote: I looked at the vg-user32_win.txt warnings, and most of them are triggered by test_gettext() which intentionally passes an invalid memory address to SendMessage(WM_GETTEXT). OK, I'll add a suppression for that. BTW tests/win.c