Re: [RESEND] [PATCH] DirectPlay should keep track of the current number of players

2007-03-07 Thread Kai Blin
On Wednesday 07 March 2007 10:52, Alessandro Pignotti wrote: > + /* I think we have to add a player to the total number of players only if > it's not a player created for system > + purpose like the name server. This way it seems we get a correct > player number */ > + if( ~dwFlags & DPL

Re: Alexandre Julliard : wine_common_ver: Set company name to Microsoft, some apps check for that.

2007-03-07 Thread Dmitry Timoshkov
"Paul Chitescu" <[EMAIL PROTECTED]> wrote: Ummm, isn't this legally dangerous? Stamping a piece of code with Microsoft's name can be interpreted as counterfeiting. Since obviously some app depends on that it should be deemed a reasonable choice of action IMHO. Maybe a better choice would be t

Re: Alexandre Julliard : wine_common_ver: Set company name to Microsoft, some apps check for that.

2007-03-07 Thread Jesse Allen
On 3/7/07, Paul Chitescu <[EMAIL PROTECTED]> wrote: Hi! Ummm, isn't this legally dangerous? Stamping a piece of code with Microsoft's name can be interpreted as counterfeiting. Maybe a better choice would be to add a configure option --with-company-name and let the users set it to... whatever..

Re: RS232 latency, redirection possible?

2007-03-07 Thread [IDC]Dragon
> Ok, RTFM got me here: > http://www.winehq.com/site/docs/wineusr-guide/misc-things-to-configure#AEN408 > > Will try that and bother you how it works out. ;-) I managed the redirection to my XPort device. However, the problem with the slow turnaround remains. When I start the application, I al

Re: Alexandre Julliard : wine_common_ver: Set company name to Microsoft, some apps check for that.

2007-03-07 Thread Paul Chitescu
Hi! Ummm, isn't this legally dangerous? Stamping a piece of code with Microsoft's name can be interpreted as counterfeiting. Maybe a better choice would be to add a configure option --with-company-name and let the users set it to... whatever... Paul Chitescu

Re: wininet: Don't discard the extra info part of a URL in InternetOpenUrl.

2007-03-07 Thread Lei Zhang
I think so... Hans? On 3/7/07, Ron Yorston <[EMAIL PROTECTED]> wrote: A fix to winnet/internet.c turned up in 0.9.32 that's supposed to ensure that the "extra info" part of a URL is correctly included. I think there's a problem with the patch. On line 2865 space is allocated for the extra info

Re: Settlers II: 10th Anniversary regression?

2007-03-07 Thread Markus
On Monday 05 March 2007 15:23, Markus wrote: > Apparently there is another patch that went in between 0.9.30 and .31 that > causes an "Invalid call" error message to show after the start screen. I'll > do a test for that later. I've tried to track down the above error by going back up to 0.9.29 but

Re: Don't compare file handles to NULL

2007-03-07 Thread Michael Stefaniuc
Francois Gouget wrote: > Jacek just sent a patch fixing the following bug: > > file = CreateFileW(fileName, GENERIC_READ, 0, NULL, OPEN_EXISTING, > FILE_ATTRIBUTE_READONLY,NULL); > -if(file) { > +if(file != INVALID_HANDLE_VALUE) { > > This looks like something that could be turned i

wininet: Don't discard the extra info part of a URL in InternetOpenUrl.

2007-03-07 Thread Ron Yorston
A fix to winnet/internet.c turned up in 0.9.32 that's supposed to ensure that the "extra info" part of a URL is correctly included. I think there's a problem with the patch. On line 2865 space is allocated for the extra info: if (!(path_extra = HeapAlloc(GetProcessHeap(), 0, size))) Shouldn'

Re: Work legalities

2007-03-07 Thread Nathan Williams
Yeah, this was the way I was leaning. Thanks to all the replies, I'm actually in Australia, whilst I love this job and don't believe there would be a problem (this company is pretty laid back / not microsoft), but I did sign a contract and think there may be an issue with one of the sections. Whe

Re: Work legalities

2007-03-07 Thread Bill Medland
On Thu, 2007-08-03 at 06:40 +1100, Nathan Williams wrote: > Hey everyone, > I have been planning to do some work on wine for a while now, but > after I started working I got myself a new programming job. > > I'm worried about the copyright of any external work I do, so I need a > little advice. >

Work legalities

2007-03-07 Thread Juan Lang
I'm worried about the copyright of any external work I do, so I need a little advice. What do I need from my employer to clear me to work on wine? Is something verbal ok, or should I get it in writing? In the US, if you do the Wine work outside of your workplace, on your own time and with your

Don't compare file handles to NULL

2007-03-07 Thread Francois Gouget
Jacek just sent a patch fixing the following bug: file = CreateFileW(fileName, GENERIC_READ, 0, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_READONLY,NULL); -if(file) { +if(file != INVALID_HANDLE_VALUE) { This looks like something that could be turned into a nice Smatch test. Hint, hint...

Re: Work legalities

2007-03-07 Thread Brian Vincent
On 3/7/07, Nathan Williams <[EMAIL PROTECTED]> wrote: I'm worried about the copyright of any external work I do, so I need a little advice. What do I need from my employer to clear me to work on wine? Is something verbal ok, or should I get it in writing? Is your employer Microsoft? If so, I'

Re: Work legalities

2007-03-07 Thread Felix Nawothnig
Nathan Williams wrote: What do I need from my employer to clear me to work on wine? Is something verbal ok, or should I get it in writing? The FSF says: http://www.gnu.org/licenses/gpl.html | You should also get your employer (if you work as a programmer) or | your school, if any, to sign a "

Re: Work legalities

2007-03-07 Thread Bryan Haskins
Why would there be a problem? Unless you work for microsoft or something, how could there be an issue with that? On 3/7/07, Nathan Williams <[EMAIL PROTECTED]> wrote: Hey everyone, I have been planning to do some work on wine for a while now, but after I started working I got myself a new progr

Re: RS232 latency, redirection possible?

2007-03-07 Thread Eric Pouech
[IDC]Dragon a écrit : Hi, I have 2 questions about the serial port handling under Wine: 1) I see a very annoying latency in an application which talks to a controller over RS232. Under Windows, the traffic is "fluent", under Wine each command has a turnaround time of almost a second. Since th

Work legalities

2007-03-07 Thread Nathan Williams
Hey everyone, I have been planning to do some work on wine for a while now, but after I started working I got myself a new programming job. I'm worried about the copyright of any external work I do, so I need a little advice. What do I need from my employer to clear me to work on wine? Is someth

[winealsa] Mind buffer loops when pausing

2007-03-07 Thread Chris Bandy
This patch should fix the incorrect handling of WaveHdr loops when pausing. Like the non-loop case written before, this sums the buffer lengths between dwPlayedTotal and dwWrittenTotal to calculate the new dwPartialOffset. Instead of blindly moving from one buffer to the next, however, this t

[winealsa] Mind buffer loops when pausing

2007-03-07 Thread Chris Bandy
This patch should fix the incorrect handling of WaveHdr loops when pausing. Like the non-loop case written before, this sums the buffer lengths between dwPlayedTotal and dwWrittenTotal to calculate the new dwPartialOffset. Instead of blindly moving from one buffer to the next, however, this trav

Re: RS232 latency, redirection possible?

2007-03-07 Thread [IDC]Dragon
> > 2) Is it possible to map the e.g. COM1 port traffic to another device, > or > > is it firmly assigned to matching RS232 interfaces of the Linux box? > I think you can redirect it to any file, no matter if it is a serial port, > a file, a pipe, stdout, ... Ok, RTFM got me here: http://www.wine

Re: RS232 latency, redirection possible?

2007-03-07 Thread Stefan Dösinger
> 2) Is it possible to map the e.g. COM1 port traffic to another device, or > is it firmly assigned to matching RS232 interfaces of the Linux box? > Ideally, I'd like to have the Windows app talk to an XPort device (remote > RS232) connected over network. A program called "socat" > (http://www.dest

RS232 latency, redirection possible?

2007-03-07 Thread [IDC]Dragon
Hi, I have 2 questions about the serial port handling under Wine: 1) I see a very annoying latency in an application which talks to a controller over RS232. Under Windows, the traffic is "fluent", under Wine each command has a turnaround time of almost a second. Since there are many commands, t

Re: New opengl thread context selection patches for testing

2007-03-07 Thread Stefan Dösinger
Am Dienstag 06 März 2007 20:48 schrieb Mirek: > Stefan Dösinger napsal(a): > > Am Sonntag 04 März 2007 23:04 schrieb Mirek: > >> Ok, i tried it with current CVS. > >> + Oblivion is still broken (same as with previous patchset) > > > > Which offscreen rendering method did you use? > > Backbuffer Wha

Re: [3/4] WineD3D: Blit the offscreen texture into the drawable if needed

2007-03-07 Thread Stefan Dösinger
Am Mittwoch 07 März 2007 02:43 schrieb Stefan Dösinger: Do not apply this patch yet. Cube textures aren't that easy pgpJyUMrUXycs.pgp Description: PGP signature

Re: App DB TOP-10 issue

2007-03-07 Thread Ben Hodgetts (Enverex)
This issue is already logged and assigned on Bugz. Ex. [EMAIL PROTECTED] wrote: > Hi, > I want to annotate that there are apps/games twice in the Platinum > List(Diablo II Lord of Destruction 1.x , Outlaws All versions) even > thrice(if you add Diablo II 1.x and LoD up for such a list). > > Btw:

Re: Command and Conquer 3 Demo

2007-03-07 Thread H. Verbeet
On 07/03/07, Matthew Clark <[EMAIL PROTECTED]> wrote: I just wanted to write to let all of the devs know how proud of the wine project I am. This Demo seems to work for the most part except for the movies in it don't seem to want to resize and when you are under attack the game crashes. Here is

Re: [PATCH] DirectPlay should keep track of the current number of players

2007-03-07 Thread Kai Blin
On Tuesday 06 March 2007 23:25, Alessandro Pignotti wrote: > Hi everyone, > this patch fixes the behaviour of dplayx that was not adding new player to > its counter. I don't see a patch. Did you attach it? Kai -- Kai Blin, WorldForge developerhttp://www.worldforge.org/ Wine developer