Re: [PATCH] wininet: Conformance test for InternetCrackUrlA.txt

2007-10-16 Thread Dmitry Timoshkov
"Nigel Liang" <[EMAIL PROTECTED]> wrote: > + ok( GetLastError() == ERROR_INVALID_PARAMETER, "Last error wrong: %p\n", > + GetLastError()); GetLastError() returns not a pointer. -- Dmitry.

"make test" failure in gdi32/bitmap.c

2007-10-16 Thread Dan Kegel
"make test" fails for me with: bitmap.c:1113: Test failed: GetDIBits with 4 bpp DIB selected in DC: Invalid DIB bits bitmap.c:1113: Test failed: GetDIBits with 8 bpp DIB selected in DC: Invalid DIB bits err:x11drv:X11DRV_CreateBitmap Trying to make bitmap with planes=1, bpp=24 err:bitmap:DIB_GetBi

Re: Wine 1.0 bugs, release criteria

2007-10-16 Thread Alexander Nicolaysen Sørnes
On Tuesday 16 October 2007 20:35:26 Denali Coldstar wrote: > Dan Kegel kegel.com> writes: > >* > > *>* At Wineconf 2007, I was appointed to be the guy who decides > *>* (with Alexandre's approval) what bugs are 1.0 bugs and what aren't. > *>* So I've started adjusting the "Target Release" fields o

Wine 1.0 bugs, release criteria

2007-10-16 Thread Denali Coldstar
Dan Kegel kegel.com> writes: >* *>* At Wineconf 2007, I was appointed to be the guy who decides *>* (with Alexandre's approval) what bugs are 1.0 bugs and what aren't. *>* So I've started adjusting the "Target Release" fields on a few *>* bugs in Bugzilla. *>* Over the next month or so, I'd like

Re: Error compiling progman

2007-10-16 Thread Juan Lang
Hi Daniel, > I have some problems compiling progman. (snip) > Xx.rc:23:8: Error: syntax error That file was removed in today's git. Update and the error will go away. --Juan

Error compiling progman

2007-10-16 Thread Daniel Nylander
I have some problems compiling progman. gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o string.o string.c ../../tools/wrc/wrc --nostdinc -I. -I. -I../../include -I../../i

Re: Possible WIne regression with Warcraft

2007-10-16 Thread Jesse Allen
On 10/15/07, Michael Lothian <[EMAIL PROTECTED]> wrote: > On 15/10/2007, Andrey Turkin <[EMAIL PROTECTED]> wrote: > > > > > Let me take a wild guess. /etc/hosts resolves your hostname to a loopback > > > address, like 127.0.1.1 or somesuch. > > > > > > If that's the case, please change /etc/hosts t

Re: user32: Add more listbox message tests, make them pass under Wine

2007-10-16 Thread Alexandre Julliard
Dmitry Timoshkov <[EMAIL PROTECTED]> writes: > @@ -533,8 +538,11 @@ static INT LISTBOX_GetItemFromPoint( LB_DESCR *descr, > INT x, INT y ) > static void LISTBOX_PaintItem( LB_DESCR *descr, HDC hdc, const RECT *rect, > INT index, UINT action, BOOL ignoreFocus ) > {

Re: [SPAM] Re: USER32: fix EM_SETLIMITTEXT with zeroed args (with tests)

2007-10-16 Thread Alexandre Julliard
Alex Villacís Lasso <[EMAIL PROTECTED]> writes: > * Implement OS version-dependent behavior for EM_SETTEXTLIMIT There's no reason to make this OS-dependent, unless you really have an app that checks the version and breaks if the limit is too high. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wordpad: Refuse to load OLE compound storage files like Windows does

2007-10-16 Thread Alexandre Julliard
Dmitry Timoshkov <[EMAIL PROTECTED]> writes: > +IStorage *stg; > + > +if (StgOpenStorage(szOpenFileName, NULL, STGM_SHARE_DENY_WRITE | > STGM_READ, > + NULL, 0, &stg) == S_OK) > +{ > +IStorage_Release(stg); > +MessageBoxW(hMainWnd, > MAKEINTRESOU