Re: about video memory detection in wine

2009-08-19 Thread Stefan Dösinger
Am Wednesday 19 August 2009 04:02:37 schrieb Sun, Sunny: Hi Dösinger Have you done that? Not yet. After Henri's objection I have decided to wait until either the spec is fixed or you two reach an agreement.

Re: (resend, 2nd) shell32: fix program search in ShellExecuteEx, quote program name if it contains spaces [2nd]

2009-08-19 Thread Alexandre Julliard
Stefan Leichter stefan.leich...@camline.com writes: @@ -1711,28 +1713,29 @@ } else { - /* If the executable name is not quoted, we have to use this search loop here, +/* FIXME: what versions support this? Fails on 2000/XP + If the executable

Re: ole32: On big endian machines, copy strings to little endian order without mucking with the map they're stored in (try 2)

2009-08-19 Thread Alexandre Julliard
Juan Lang juan.l...@gmail.com writes: +#ifdef WORDS_BIGENDIAN +/* Returns a byte-swapped copy of str, to be freed with HeapFree(). */ +static LPWSTR PropertyStorage_StringToLE(LPCWSTR str, size_t len) +{ +LPWSTR leStr = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR)); + +if

Re: [PATCH 5/5] wined3d: Hide WINED3DFMT_R16G16B16A16_UNORM again.

2009-08-19 Thread Stefan Dösinger
Am Wednesday 19 August 2009 10:55:39 schrieb Henri Verbeet: This format is broken on some cards. Hide it until we figure out a reliable way to deal with it. Didn't you consider breaking something the best way to get the driver fixed? :-) Fwiw, I reported this to linux-b...@nvidia.com, together

Re: [1/3] WineD3D: Use a sane default refresh rate

2009-08-19 Thread Henri Verbeet
2009/8/19 Stefan Dösinger ste...@codeweavers.com: and its value(=0) is not sane MSDN seems to disagree. The value of 0 indicates an adapter default.

Re: [1/3] WineD3D: Use a sane default refresh rate

2009-08-19 Thread Stefan Dösinger
Am Wednesday 19 August 2009 14:46:21 schrieb Henri Verbeet: 2009/8/19 Stefan Dösinger ste...@codeweavers.com: and its value(=0) is not sane MSDN seems to disagree. The value of 0 indicates an adapter default. 0 as a refresh rate? Or in the sense of this is the default adapter? 0 for

Re: [1/3] WineD3D: Use a sane default refresh rate

2009-08-19 Thread Stefan Dösinger
Am Wednesday 19 August 2009 14:51:44 schrieb Stefan Dösinger: MSDN seems to disagree. The value of 0 indicates an adapter default. 0 for D3DADAPTER_DEFAULT certainly makes sense. But 0 as advertised refresh rate does not. 0 probably makes sense as requested refresh rate, in the sense of Use

Re: [1/3] WineD3D: Use a sane default refresh rate

2009-08-19 Thread Henri Verbeet
2009/8/19 Stefan Dösinger ste...@codeweavers.com: Even if MSDN claims that a driver can enum a refresh rate of zero, games evidently don't like it: Battlefield 1942 refuses to change the screen resolution if all resolutions have a refresh rate of 0. Sure, it's picky like that. IIRC most

Re: winelib include problem

2009-08-19 Thread Jesse Allen
On Tue, Aug 18, 2009 at 7:44 AM, Maarten Lankhorstm.b.lankho...@gmail.com wrote: Hi Jesse, 2009/8/12 Jesse Allen the3dfxd...@gmail.com: Oh that may have been the correct way for vmrender.idl, but the patch you proposed of protecting with a struct does compile. My app does not use a VMRGUID,

Re: [1/3] WineD3D: Use a sane default refresh rate

2009-08-19 Thread Stefan Dösinger
Am Wednesday 19 August 2009 15:09:03 schrieb Henri Verbeet: Sure, it's picky like that. IIRC most battlefield games need 800x...@60 to startup. Occasionally that's a problem on Windows as well. It seems to me that you should be looking at why EnumDisplaySettingsExW() didn't give you a refresh

GSoC 2009 Final evaluations due

2009-08-19 Thread Kai Blin
Hi folks, GSoC 2009 is wrapping up and the final evaluations are due. So far only one student and no mentors have filled out the surveys, so please take your time and take care of that soon. The results are due on Monday, but I'd prefer if I had some room to deal with any issues coming up, so

Re: ole32: On big endian machines, copy strings to little endian order without mucking with the map they're stored in (try 2)

2009-08-19 Thread Juan Lang
You are still casting away const... Indeed I am, but now the warning is harmless: the const pointer is only read from, never written to. Making a const pointer in the little endian case would make the entire block rather messier, since having a non-const pointer is necessary in the big endian

Re: ole32: On big endian machines, copy strings to little endian order without mucking with the map they're stored in (try 2)

2009-08-19 Thread Alexandre Julliard
Juan Lang juan.l...@gmail.com writes: You are still casting away const... Indeed I am, but now the warning is harmless: the const pointer is only read from, never written to. Making a const pointer in the little endian case would make the entire block rather messier, since having a

Wine Development Stats

2009-08-19 Thread André Hentschel
Hi, inspired by Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It: An August 2009 Update (http://www.linuxfoundation.org/publications/whowriteslinux.pdf), i thought we might do a similar analyse of the wine tree. I attach a first

Re: Wine Development Stats

2009-08-19 Thread Juan Lang
Hi André, inspired by Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It: An August 2009 Update (http://www.linuxfoundation.org/publications/whowriteslinux.pdf), i thought we might do a similar analyse of the wine tree. The

Request for test on at least one Windows box

2009-08-19 Thread Juan Lang
Hi all, could someone with the ability to build and run a test on Windows run the attached test for me? I have a fix for bug 19760, but I'd just like to double check that it's correct before sending it in (and I don't have access to Windows at the moment.) Please copy the list on the reply so

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Alex Villací­s Lasso
Aric Stewart escribió: --- configure.ac | 12 + dlls/winemp3.acm/Makefile.in | 11 +- dlls/winemp3.acm/common.c | 261 --- dlls/winemp3.acm/dct64_i386.c | 329 dlls/winemp3.acm/decode_i386.c | 164 dlls/winemp3.acm/huffman.h | 346

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Roderick Colenbrander
The libmpg123 library is not shipped in any rpmfusion repository for Fedora 10, and possibly for other distros. This means anyone who wants mp3 support would need to install libmpg123 from source. However, rpmfusion for Fedora 10 has libmad, lame and twolame. -- perl -e '$x=2.3;printf(%.0f

Re: Request for test on at least one Windows box

2009-08-19 Thread Stefan Leichter
Am Wednesday 19 August 2009 19:27:28 schrieb Juan Lang: Hi all, could someone with the ability to build and run a test on Windows run the attached test for me? I have a fix for bug 19760, but I'd just like to double check that it's correct before sending it in (and I don't have access to

Re: Request for test on at least one Windows box

2009-08-19 Thread Stefan Leichter
Am Wednesday 19 August 2009 23:16:12 schrieb Stefan Leichter: Am Wednesday 19 August 2009 19:27:28 schrieb Juan Lang: Hi all, could someone with the ability to build and run a test on Windows run the attached test for me? I have a fix for bug 19760, but I'd just like to double check that

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Matteo Bruni
2009/8/19 Roderick Colenbrander thunderbir...@gmail.com: The libmpg123 library is not shipped in any rpmfusion repository for Fedora 10, and possibly for other distros. This means anyone who wants mp3 support would need to install libmpg123 from source. However, rpmfusion for Fedora 10 has

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Roderick Colenbrander
On Wed, Aug 19, 2009 at 11:26 PM, Matteo Brunimatteo.myst...@gmail.com wrote: 2009/8/19 Roderick Colenbrander thunderbir...@gmail.com: The libmpg123 library is not shipped in any rpmfusion repository for Fedora 10, and possibly for other distros. This means anyone who wants mp3 support would

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Chris Robinson
On Wednesday 19 August 2009 2:26:37 pm Matteo Bruni wrote: What about using more popular libraries as libmad, lame or maybe gstreamer to decode mp3 files? I believe someone previously said that gstreamer is also available on Mac. libmad is GPL, and IIRC lame uses libmpg123 or libmad for

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Rosanne DiMesio
On Wed, 19 Aug 2009 15:48:10 -0500 Alex Villací­s Lasso a_villa...@palosanto.com wrote: The libmpg123 library is not shipped in any rpmfusion repository for Fedora 10, and possibly for other distros. This means anyone who wants mp3 support would need to install libmpg123 from source.

Re: winemp3.acm: link to system libmpg123.so

2009-08-19 Thread Alex Villací­s Lasso
Rosanne DiMesio escribió: On Wed, 19 Aug 2009 15:48:10 -0500 Alex Villací­s Lasso a_villa...@palosanto.com wrote: The libmpg123 library is not shipped in any rpmfusion repository for Fedora 10, and possibly for other distros. This means anyone who wants mp3 support would need to install

Re: old patch enabling visible icons in some applications

2009-08-19 Thread James McKenzie
Philipp A. wrote: Well bug 8555 (http://bugs.winehq.org/show_bug.cgi?id=8555) is affected by that FIXME, so that can be a starting bug. Well, i think, they don't like working apps. What on earth can i do to make somebody stop by and put the damn patch into the svn? Clean it up