Re: .net 3.5sp1 status check, blocking GFWL

2010-03-15 Thread Ben Klein
On 16 March 2010 00:55, Dan Kegel wrote: > 4) Install gfwlivesetupmin.exe but without .NET Framework <--snip--> > The playonlinux script for that game, > http://www.playonlinux.com/repository/?script=402 > shows that the way to do 4) is > > wine gfwlivesetupmin.exe /nodotnet Added to the HOWTO.

Re: .net 3.5sp1 status check, blocking GFWL

2010-03-15 Thread Edward Savage
On Tue, Mar 16, 2010 at 12:55 AM, Dan Kegel wrote: > The appdb for another game, Fallout 3, > http://appdb.winehq.org/objectManager.php?sClass=version&iId=14322 > suggests > "1) Download msasn1.dll from e.g. here > 2) Override msasn1.dll in Wine Configuration. How to Override DLL > 3) Download gfw

Re: [9/9] shell32/shellview: Don't crash on ::DragLeave called without droptraget

2010-03-15 Thread Paul Vriens
On 03/13/2010 10:10 PM, Nikolay Sivov wrote: That causes a crash in Office 2k3 Save As menu at least, while trying to drapdrop something. Hi Nikolay, These new tests (don't know which ones of the patchset) introduce test failures on Vista+: http://test.winehq.org/data/tests/shell32:shlvie

Re: [PATCH] cmd: added some expansion tests. (try 2)

2010-03-15 Thread Paul Vriens
On 03/09/2010 01:15 PM, Yann Droneaud wrote: diff --git a/programs/cmd/tests/test_builtins.cmd b/programs/cmd/tests/test_builtins.cmd index ed2b75b..e346ffa 100644 --- a/programs/cmd/tests/test_builtins.cmd +++ b/programs/cmd/tests/test_builtins.cmd @@ -23,6 +23,21 @@ cd dummydir echo %~dp0

Re: rsaenh(2/6): Add support for SHA-256, SHA-384, and SHA-512 (try 2)

2010-03-15 Thread Juan Lang
> ULL constants are not portable and should be avoided. Ah, right. Sorry, I only glanced at the source after checking the license. I'll fix and resend (and have a closer look.) --Juan

Re: comctl32: resend [Bug 17251] cchTextMax needs to be set for LVS_OWNERDATA as it uses LVN_GETDISPINFO notifications

2010-03-15 Thread Nikolay Sivov
On 3/15/2010 16:08, Jeff Latimer wrote: Changed LISTVIEW_EndEditLabel to set up the call to LISTVIEW_GetItemT the same as LISTVIEW_EditLabel If not set then no value is returned and in the case of uTorrent the next entry selected is renamed. http://bugs.winehq.org/show_bug.cgi?id=17251 A

Re: rsaenh(2/6): Add support for SHA-256, SHA-384, and SHA-512 (try 2)

2010-03-15 Thread Alexandre Julliard
Juan Lang writes: > +/* Hash constant words K for SHA-384 and SHA-512: */ > +const static sha2_word64 K512[80] = { > + 0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL, > + 0xb5c0fbcfec4d3b2fULL, 0xe9b5dba58189dbbcULL, ULL constants are not portable and should be avoided. -- Alexandre Jull

Re: .net 3.5sp1 status check, blocking GFWL

2010-03-15 Thread Dan Kegel
On Mon, Mar 15, 2010 at 5:55 AM, Dan Kegel wrote: > I guess winetricks should add a gfwl verb that does that, > but we would need a better source for msasn1.dll.  There > might be a usable one inside > http://download.microsoft.com/download/d/b/4/db49275f-7741-47cc-b8d5-42a3129499c1/Q835732_xpe_sp

re: .net 3.5sp1 status check, blocking GFWL

2010-03-15 Thread Dan Kegel
The appdb for another game, Fallout 3, http://appdb.winehq.org/objectManager.php?sClass=version&iId=14322 suggests "1) Download msasn1.dll from e.g. here 2) Override msasn1.dll in Wine Configuration. How to Override DLL 3) Download gfwlivesetupmin.exe from e.g. here 4) Install gfwlivesetupmin.exe b

Re: [PATCH] configure.ac: use proper quoting throughout the file

2010-03-15 Thread Yann Droneaud
Le lundi 15 mars 2010 à 13:05 +0100, Alexandre Julliard a écrit : > Yann Droneaud writes: > > >> Note: Quoting were not added for WINE macros related to Makefile generation > >> as they broke things: there are some quoting magic in aclocal.m4 not > >> fixed by this patch. > > > > As stated in the

Re: On cygwin, these programs fails because they lack __wargv definition. So adding -mno-cygwin flag tell winegcc to link them with msvcrt instead of libc

2010-03-15 Thread Alexandre Julliard
Alexandre Goujon writes: > --- > programs/cmd/Makefile.in |2 +- > programs/dxdiag/Makefile.in |2 +- > programs/explorer/Makefile.in|2 +- > programs/extrac32/Makefile.in|2 +- > programs/mshta/Makefile.in |2 +- > programs/reg/Makefile.in

Re: comctl32: [Bug 17251] cchTextMax needs to be set for LVS_OWNERDATA as it uses LVN_GETDISPINFO notifications

2010-03-15 Thread Jeff Latimer
On 15/03/10 23:33, Nikolay Sivov wrote: On 3/15/2010 15:08, Jeff Latimer wrote: LISTVIEW_GetItemW Hm, actually EditLabel and EndEditLabel looks quite different. EditLabel uses static buffer, and EndEditLabel doesn't even set a buffer pointer. That's most likely a real problem here, could you

Re: comctl32: [Bug 17251] cchTextMax needs to be set for LVS_OWNERDATA as it uses LVN_GETDISPINFO notifications

2010-03-15 Thread Nikolay Sivov
On 3/15/2010 15:08, Jeff Latimer wrote: LISTVIEW_GetItemW Hm, actually EditLabel and EndEditLabel looks quite different. EditLabel uses static buffer, and EndEditLabel doesn't even set a buffer pointer. That's most likely a real problem here, could you try to copy way we call LISTVIEW_GetItem

Re: comctl32: [Bug 17251] cchTextMax needs to be set for LVS_OWNERDATA as it uses LVN_GETDISPINFO notifications

2010-03-15 Thread Nikolay Sivov
On 3/15/2010 15:08, Jeff Latimer wrote: On 13/03/10 20:30, Nikolay Sivov wrote: On 3/13/2010 06:35, Jeff Latimer wrote: If not set then no value is returned and in the case of uTorrent the next entry selected is renamed. http://bugs.winehq.org/show_bug.cgi?id=17251 No value returned from wh

Re: comctl32: [Bug 17251] cchTextMax needs to be set for LVS_OWNERDATA as it uses LVN_GETDISPINFO notifications

2010-03-15 Thread Jeff Latimer
On 13/03/10 20:30, Nikolay Sivov wrote: On 3/13/2010 06:35, Jeff Latimer wrote: If not set then no value is returned and in the case of uTorrent the next entry selected is renamed. http://bugs.winehq.org/show_bug.cgi?id=17251 No value returned from what? LISTVIEW_GetItemW dispInfo.it

Re: [PATCH] configure.ac: use proper quoting throughout the file

2010-03-15 Thread Alexandre Julliard
Yann Droneaud writes: >> Note: Quoting were not added for WINE macros related to Makefile generation >> as they broke things: there are some quoting magic in aclocal.m4 not >> fixed by this patch. > > As stated in the patch log, it can be applied safely. > > But once applied on current HEAD, most

Re: Documentation?

2010-03-15 Thread Alexandre Julliard
Luke Benstead writes: > While on the subject of documentation... would it be a good idea to > begin documenting functions with something like Doxygen or similar? > I'm just wondering if we could be building our own, much more > accurate, MSDN. Is there a reason that Wine isn't documented in this

Re: [PATCH] configure.ac: use proper quoting throughout the file

2010-03-15 Thread Yann Droneaud
Hi, Le lundi 15 mars 2010 à 11:13 +0100, Yann Droneaud a écrit : > Added quoting around macro parameters as recommanded by autoconf: > http://www.gnu.org/software/autoconf/manual/html_node/Autoconf-Language.html#Autoconf-Language > > Autoconf output was checked to be the same with and without the