Re: msi: Implement the DROP TABLE sql command.

2008-10-01 Thread James Hawkins
Hold off on this patch. There's a missing debugstr_w and a crash on patchwatcher. -- James Hawkins

Fullscreen window in metacity hides owned window

2008-10-01 Thread Michael Ost
We are seeing a problem in Metacity where a fullscreen window obscures a second created window that has a particular style: WS_DLGFRAME | WS_THICKFRAME. When window A is created fullscreen (WS_POPUP, size matches screen res) and window B is created as an "owned window" (WS_DLGFRAME|WS_THICKFRA

Re: [PATCH] wintrust: Add a stub for OpenPersonalTrustDBDialog

2008-10-01 Thread Juan Lang
Hi Detlef, I'm not sure why this wasn't committed, but my hunch is this: + * RETURNS + * Success: TRUE (The Dialog was opened) + * Failure: FALSE + * + */ +BOOL WINAPI OpenPersonalTrustDBDialog(HWND hwnd) +{ +FIXME("(%p) stub\n", hwnd); +return TRUE; Shouldn't it return FALSE instead?

Re: [2/2] inetcomm: Add a stub implementation of IIMAPTransport.

2008-10-01 Thread Paul Vriens
Hans Leidekker wrote: > diff --git a/dlls/inetcomm/imaptransport.c b/dlls/inetcomm/imaptransport.c > new file mode 100644 > index 000..99011b2 > --- /dev/null > +++ b/dlls/inetcomm/imaptransport.c > @@ -0,0 +1,498 @@ > +/* > + * IMAP Transport > + * > + * Copyright 2008 Hans Leidekker for CodeW

Re: wine.inf: Add entry for fake wintab32.dll

2008-10-01 Thread John Klehm
On Wed, Oct 1, 2008 at 1:16 PM, James Hawkins <[EMAIL PROTECTED]> wrote: > On Wed, Oct 1, 2008 at 1:11 PM, John Klehm <[EMAIL PROTECTED]> wrote: >> On Wed, Oct 1, 2008 at 1:05 PM, Andrew Nguyen <[EMAIL PROTECTED]> wrote: >>> --- >>> tools/wine.inf.in |1 + >>> 1 files changed, 1 insertions(+),

Re: wine.inf: Add entry for fake wintab32.dll

2008-10-01 Thread James Hawkins
On Wed, Oct 1, 2008 at 1:11 PM, John Klehm <[EMAIL PROTECTED]> wrote: > On Wed, Oct 1, 2008 at 1:05 PM, Andrew Nguyen <[EMAIL PROTECTED]> wrote: >> --- >> tools/wine.inf.in |1 + >> 1 files changed, 1 insertions(+), 0 deletions(-) >> >> Add entry for fake wintab32.dll > > We have a real wintab

Re: wine.inf: Add entry for fake wintab32.dll

2008-10-01 Thread John Klehm
On Wed, Oct 1, 2008 at 1:05 PM, Andrew Nguyen <[EMAIL PROTECTED]> wrote: > --- > tools/wine.inf.in |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > Add entry for fake wintab32.dll We have a real wintab32.dll. What are you trying to fix? Cheers, --John

Re: winhttp: tests/server.c[new]: Add basic internal server test

2008-10-01 Thread Zac Brown
Zac Brown wrote: > Add basic internal server test. Thanks to Hans for some help. > > > > > As a note, these tests pass on XP and 2003.

Re: wintab32: Avoid memorizing LOGCONTEXT struct

2008-10-01 Thread John Klehm
On Wed, Oct 1, 2008 at 5:16 AM, Rob Shearman <[EMAIL PROTECTED]> wrote: > 2008/9/30 John Klehm <[EMAIL PROTECTED]>: >> +TRACE("Name: %s, Options: %x, Status: %x, Locks: %x, MsgBase: %x, >> Device: %x, PktRate: %x, %x%s, %x%s, %x%s, BtnDnMask: %x, BtnUpMask: %x, >> InOrgX: %i, InOrgY: %i, InOr

Re: wininet: Add tests for InternetTimeFromSystemTimeW with insufficient buffer.

2008-10-01 Thread Rob Shearman
2008/10/1 Rob Shearman <[EMAIL PROTECTED]>: > --- > dlls/wininet/tests/http.c | 18 ++ > 1 files changed, 18 insertions(+), 0 deletions(-) > Please ignore this message. There are several problems with the patch, one of which is that the tests weren't run with Wine and currently

Re: howto fix bug 13462

2008-10-01 Thread Rob Shearman
2008/9/29 Louis. Lenders <[EMAIL PROTECTED]>: > Rob Shearman gmail.com> writes: > > Hi Rob, i think i got the test ready now, i'll send it when the defenitions > are > in place in ctxtcall.idl. Now still strugling how to fix the bug. > > I fixed up the patch below, also by looking how things are

Marcus pictures

2008-10-01 Thread Marcus Meissner
Hi, http://gallery.kuschelt.net/main.php?g2_view=core.ShowItem&g2_itemId=163676&g2_page=3 has my pictures of Wine Conf. Ciao, Marcus

Re: Discussion of bug versions

2008-10-01 Thread Darragh Bailey
On Mon, Sep 29, 2008 at 12:53:17PM -0500, Austin English wrote: > On Sun, Sep 28, 2008 at 4:43 PM, Vitaliy Margolen > <[EMAIL PROTECTED]> wrote: > > Jeremy White wrote: > >> We discussed bugzilla versions at Wineconf, re: > >> > >> http://bugs.winehq.org/show_bug.cgi?id=12728 > >> > >> There were s

Re: [2/2] runtest: Let the test program handle the lack of a test name.

2008-10-01 Thread Dylan Smith
On Wed, Oct 1, 2008 at 6:13 AM, Rob Shearman <[EMAIL PROTECTED]>wrote: > 2008/9/30 Dylan Smith <[EMAIL PROTECTED]>: > > -exec $WINETEST_WRAPPER "$topobjdir/wine" "$program" "$infile" "$@" > > +exec $WINETEST_WRAPPER "$topobjdir/wine" "$program" $infile $@ > > It looks like this will cause problems

Re: add ctxtcall.idl (resend)

2008-10-01 Thread Rob Shearman
2008/9/28 Louis. Lenders <[EMAIL PROTECTED]>: > Hi, this is part of bug http://bugs.winehq.org/show_bug.cgi?id=13462. > test shows the interface is available (in winxp) , test follows This patch looks good to me. -- Rob Shearman

Re: Noisy FIXME

2008-10-01 Thread Rob Shearman
2008/9/28 Dimi Paun <[EMAIL PROTECTED]>: > Silence noisy FIXME about uninteresting ExtTextOut() flags. > Keep the FIXME in the string to make it easily grep-able. > > diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c > index 1e8cac3..c3e4840 100644 > --- a/dlls/gdi32/font.c > +++ b/dlls/gdi32/font

Re: wintab32: Avoid memorizing LOGCONTEXT struct

2008-10-01 Thread Rob Shearman
2008/9/30 John Klehm <[EMAIL PROTECTED]>: > +TRACE("Name: %s, Options: %x, Status: %x, Locks: %x, MsgBase: %x, > Device: %x, PktRate: %x, %x%s, %x%s, %x%s, BtnDnMask: %x, BtnUpMask: %x, > InOrgX: %i, InOrgY: %i, InOrgZ: %i, InExtX: %i, InExtY: %i, InExtZ: %i, > OutOrgX: %i, OutOrgY: %i, OutO

Re: [2/2] runtest: Let the test program handle the lack of a test name.

2008-10-01 Thread Rob Shearman
2008/9/30 Dylan Smith <[EMAIL PROTECTED]>: > -exec $WINETEST_WRAPPER "$topobjdir/wine" "$program" "$infile" "$@" > +exec $WINETEST_WRAPPER "$topobjdir/wine" "$program" $infile $@ It looks like this will cause problems now if $infile contains spaces or if any of the arguments in $@ contain spaces.

Re: Discussion of bug versions

2008-10-01 Thread Markus Hitter
While on the topic, please remove Mac OS up to 10.3 from the list of operating systems. Mac OS X 10.4.x was the first publicly available Macintosh OS running on Intel processors, so there won't ever be anybody running Wine on e.g. MacOS 9. MarKus - - - - - - - - - - - - - - - - - - - Dipl.

Re: Wine PulseAudio Driver

2008-10-01 Thread Scott Ritchie
Reece Dunn wrote: > 2008/9/29 Scott Ritchie <[EMAIL PROTECTED]>: >> Arthur Taylor wrote: >>> Also, in the patch, configure checks for pulseaudio >= 0.9.7. I have >>> since noticed that it uses parts of the api from 0.9.11 and compilation >>> will fail against previous versions. >>> >>> Thanks >> As