Re: kernel32 nls file codepage conversion

2010-05-30 Thread Dmitry Timoshkov
Frédéric Delanoy wrote: > >> I'm intending to convert dlls/kernel32/nls/fr.nls from CP 1252 to CP > >> 65001 (UTF-8), > > > > Is there a ny reason behind that? > > Uniformisation? Universality? All other rc files (at least Fr ones, > and most of the others) have already been > converted. If tha

Re: msvcrt/tests: convert file to UTF-8

2010-05-30 Thread Austin English
2010/5/30 Frédéric Delanoy : > On Mon, May 31, 2010 at 00:23, Austin English wrote: >> -- >> -Austin > > Not sure about it, but shouldn't this file stay in CP1252? > After all the specific locale is tested using CP1252 no? Hm, yeah. I hadn't meant to send this patch yet anyway, it's not correct (

Re: msvcrt/tests: convert file to UTF-8

2010-05-30 Thread Frédéric Delanoy
On Mon, May 31, 2010 at 00:23, Austin English wrote: > -- > -Austin Not sure about it, but shouldn't this file stay in CP1252? After all the specific locale is tested using CP1252 no? Frédéric

Re: comdlg32: Fix Italian translation

2010-05-30 Thread Matteo Bruni
> - LTEXT "File di &Tipo:", 1089, 6, 104, 90, 9 > + LTEXT "&Tippo del file:", 1089, 6, 104, 90, 9 One 'p' is enough :). More importantly, this and the shell32 patch have mangled accented letters (maybe the conversion to UTF8 didn't work out well?). No problems in the taskmgr patch though. By the

Re: msvcrt/tests: convert file to UTF-8

2010-05-30 Thread testbot
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=2395 Your paranoid android.

Re: localspl: Add Italian translation

2010-05-30 Thread Luca Bennati
2010/5/30 Sven Baars > Luca Bennati wrote: > >> +/* + * English resources for localspl + * + * Copyright 2005 Huw Davies + >> * Copyright 2006 Detlef Riekenberg + * >> > Hey Luca, > > This should probably be > > +/* > + * Italian resources for localspl > + * > + * Copyright 2010Luca Bennati > + *

Re: Allowed reverse engineering methods

2010-05-30 Thread Roderick Colenbrander
>> But which methods are allowed? I assume that "obvious" >> methods (reading header files, registry dumps, etc.) are >> acceptable, but can I e.g. analyze .pdb symbol files >> (availble in e.g. Microsoft's DirectX SDK)? >> >> > > You can do the above as long as they are readily available.   The .p

Re: RFC: msvcrt: support dates after year 2038 in mktime64

2010-05-30 Thread James McKenzie
Robert Wilhelm wrote: Hello James, seems I should better send patches as attachments. http://testbot.winehq.org/JobDetails.pl?Key=2393 was more successfully. I am not sure I got your question. On 64bit unix systems (which have 64bit time_t), mktime() will support dates after year 2038. There is

Re: Allowed reverse engineering methods

2010-05-30 Thread James McKenzie
Mariusz Pluciński wrote: Hello I'm working on implementation of Games Explorer for Wine (in Google Summer of Code). My work gets progress, but to finish it, I need to get more information about Windows implementation. My question is: which reverse engineering methods are legal and accepted while

Re: Allowed reverse engineering methods

2010-05-30 Thread Nikolay Sivov
On 5/30/2010 21:41, Mariusz Pluciński wrote: Hello I'm working on implementation of Games Explorer for Wine (in Google Summer of Code). My work gets progress, but to finish it, I need to get more information about Windows implementation. Hi, Mariusz. My question is: which reverse engineerin

Re: RFC: msvcrt: support dates after year 2038 in mktime64

2010-05-30 Thread Robert Wilhelm
Hello James, seems I should better send patches as attachments. http://testbot.winehq.org/JobDetails.pl?Key=2393 was more successfully. I am not sure I got your question. On 64bit unix systems (which have 64bit time_t), mktime() will support dates after year 2038. There is no need for my patch.

Re: kernel32 nls file codepage conversion

2010-05-30 Thread Michael Stefaniuc
On 05/30/2010 06:05 PM, Frédéric Delanoy wrote: 2010/5/30 Dmitry Timoshkov: Frédéric Delanoy wrote: I'm intending to convert dlls/kernel32/nls/fr.nls from CP 1252 to CP 65001 (UTF-8), Is there a ny reason behind that? Uniformisation? Universality? All other rc files (at least Fr ones, and

Allowed reverse engineering methods

2010-05-30 Thread Mariusz Pluciński
Hello I'm working on implementation of Games Explorer for Wine (in Google Summer of Code). My work gets progress, but to finish it, I need to get more information about Windows implementation. My question is: which reverse engineering methods are legal and accepted while working in Wine project? O

Re: Replacement of "#if 0" by "if (0)" blocks

2010-05-30 Thread James McKenzie
Frédéric Delanoy wrote: Hi folks, after seeing aafef7cdd56e488d2f42eb01190e51ce6148b664 (Use if(0) instead of #if 0 to make sure code still compiles), IMHO, except special cases (like maybe in headers files), those '#if 0' have no advantages compared to "if (0)" (besides being highlighted in vim

Replacement of "#if 0" by "if (0)" blocks

2010-05-30 Thread Frédéric Delanoy
Hi folks, after seeing aafef7cdd56e488d2f42eb01190e51ce6148b664 (Use if(0) instead of #if 0 to make sure code still compiles), IMHO, except special cases (like maybe in headers files), those '#if 0' have no advantages compared to "if (0)" (besides being highlighted in vim), because they may induce

Re: RFC: msvcrt: support dates after year 2038 in mktime64

2010-05-30 Thread James McKenzie
(Marvin) wrote: Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=2394 Your

Re: RFC: msvcrt: support dates after year 2038 in mktime64

2010-05-30 Thread testbot
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=2394 Your paranoid android.

Re: kernel32 nls file codepage conversion

2010-05-30 Thread Frédéric Delanoy
2010/5/30 Dmitry Timoshkov : > Frédéric Delanoy wrote: > >> I'm intending to convert dlls/kernel32/nls/fr.nls from CP 1252 to CP >> 65001 (UTF-8), > > Is there a ny reason behind that? Uniformisation? Universality? All other rc files (at least Fr ones, and most of the others) have already been co

New wisotool 20100530: new verbs galore

2010-05-30 Thread Dan Kegel
wisotool is a handy winetricks-like script for automatically installing games from .iso or .mds files copied from your own dvds (or, if the game is freely downloadable, it will download it). Just like winetricks, it is intended to make testing Wine easier, but might be useful for people who simply

Re: Last Minute Submission: Winecfg>About

2010-05-30 Thread Joel Holdsworth
Yeah the link control doesn't work. I think the problem is with shell32/shlexec.c. I get the attached output when I try with WINEDEBUG= +exec . For some reason it seems to be appending a backslash on the end of the URL. It looks like a very simple problem to fix. If you run "wine winebrowser http:/

Re: "Powered by Mozilla" somewhere subtle on winehq?

2010-05-30 Thread Austin English
2010/5/30 André Hentschel : > Am 30.05.2010 00:16, schrieb Scott Ritchie: >> http://www.mozilla.org/projects/powered-by.html >> >> Mozilla has a small campaign to mention projects that depend on them in >> various fashions.  I think it'd be neat to get listed there on that page. >> >> Mozilla in tu

Re: Last Minute Submission: Winecfg>About

2010-05-30 Thread Austin English
2010/5/30 André Hentschel : > Like Nikolay i am a bit scared of the link control. Maybe that should not be > included in the first patch and you can send it later when it surely works. > Against Nikolay's opinion i think you didnt changed the layout too > much(compared one by one) so it is ok. P

Re: Last Minute Submission: Winecfg>About

2010-05-30 Thread André Hentschel
Am 29.05.2010 17:17, schrieb Joel Holdsworth: > Hi All, > > I know it's late and we're in freeze mode now, but I wanted to offer > some work I've been doing: > > http://www.airwebreathe.org.uk/space/new-about-screen.png > > Basically I've been giving the about page of winecfg a face lift. It > s

Re: "Powered by Mozilla" somewhere subtle on winehq?

2010-05-30 Thread André Hentschel
Am 30.05.2010 00:16, schrieb Scott Ritchie: > http://www.mozilla.org/projects/powered-by.html > > Mozilla has a small campaign to mention projects that depend on them in > various fashions. I think it'd be neat to get listed there on that page. > > Mozilla in turn would like us to mention Mozill

Re: localspl: Add Italian translation

2010-05-30 Thread Sven Baars
Luca Bennati wrote: +/* + * English resources for localspl + * + * Copyright 2005 Huw Davies + * Copyright 2006 Detlef Riekenberg + * Hey Luca, This should probably be +/* + * Italian resources for localspl + * + * Copyright 2010Luca Bennati + * Same for your other patches ;) Sven

Re: Release plans

2010-05-30 Thread wylda
Hi, another week and Sunday gone so time for simple numbers... 340 regressions <-- release announcement 356 regressions <-- release announcement + 1week 339 regressions <-- release announcement + 2weeks(rc1) 322 regressions <-- release announcement + 3weeks(rc2) I think it could be even a

Re: Building a CUDA 3.0 dll wrapper, compile errors

2010-05-30 Thread Roderick Colenbrander
> winegcc -shared cudart.dll.spec -mno-cygwin -o cudart.dll.so cudart.o > -L/usr/local/cuda/lib/ -lcudart   -lodbc32 -lole32 -loleaut32 -lwinspool > -lodbccp32 -luuid > cudart.o: In function `__saturatef': > cudart.c:(.text+0x3b6c): undefined reference to `__cuda___isnanf' > cudart.o: In function `