Re: wine/dlls wininet/netconnection.c user/text.c ...

2005-03-29 Thread Dimitrie O. Paun
On Tue, Mar 29, 2005 at 01:49:22PM -0600, Alexandre Julliard wrote: > Log message: > Peter Berg Larsen <[EMAIL PROTECTED]> > Janitorial: Get rid of strncpy/strncpyW. This is cool stuff. Now it would be nice if someone hacks winapi_check to ... check for strncpy() business so it doesn't

WineConf Agenda

2005-03-29 Thread Brian Vincent
I'm going to start this off with a huge apology - there's a very real chance I've asked someone to do a presentation and it's not on this list. If so, you need to email me to remind me. If you were definitely planning on presenting something because I emailed you, let me know - there's lots of sp

Re: KERNEL: Implement undocumented SetCPGlobal API call

2005-03-29 Thread Dmitry Timoshkov
"Troy Rollo" <[EMAIL PROTECTED]> wrote: > > What app does depend on it? > > I can't name a specific app that depends on it already (other than Windows > login management processes), I wonder then how did you discover its existence and syntax and how did you test its real behaviour? > but: > >

Re: Regression in winealsa (message only?)

2005-03-29 Thread James Courtier-Dutton
Jeremy White wrote: > Hi Paul, > > I see the same behavior after Robert's change to use plug:hw:0 > (and removing my settings in ~/.wine/config). > > The attached patch 'fixes' the problem for me; can you try it? > > However, to be honest, the real issue is that I don't really > understand what'

Re: Regression in winealsa (message only?)

2005-03-29 Thread Jeremy White
Hey James, I am an alsa developer, what exactly is the problem? For normal stereo playback use: "plug:front" For 5.1 playback use: "plug:surround51" For stereo capture (record) use: "plug:front" For mixer control interface use: "hw" Robert has tweaked the code so that the user can specify what devi

Re: Autopackage 1.0

2005-03-29 Thread Mike Hearn
On Tue, 29 Mar 2005 11:06:57 +0200, Boaz Harrosh wrote: > now that Autopackage 1.0 is out does any one plan on a Wine Autopackage > installer. In case anybody is waiting, I'm not planning on this anytime soon. I have enough to do just supporting other projects that need it much more (because they

Progress of work on MSHTML

2005-03-29 Thread Jacek Caban
Hi. I decided that it's time to write here about my work. I'm working on an implementation of MSHTML using Gecko (Mozilla's engine) API. Results of this work you can see here: http://members.lycos.co.uk/merplayers/wine/ Yes, it is Internet Explorer on Mozilla's engine under Wine! At last... it does

Re: KERNEL: Implement undocumented SetCPGlobal API call

2005-03-29 Thread Troy Rollo
On Tue, 29 Mar 2005 15:03, Dmitry Timoshkov wrote: > What app does depend on it? I can't name a specific app that depends on it already (other than Windows login management processes), but: - the call has some fairly obvious uses such that it is not out of the question for an app to use it; -

Re: Dragon Naturally Speaking - working.

2005-03-29 Thread peter
Ok , that is the same setup as I have I thought you meant you were using winealsa.drv , thanks for the clarification. It's useful to note what you say about the capture level being relevant Thanks for the post. On Tue, 29 Mar 2005 13:38:13 +0200, Konstantin Goudkov <[EMAIL PROTECTED]> wrote:

Re: OLEPICTURE: Initialize [orig|himetric][Width|Height] for PICTYPE_ICON case

2005-03-29 Thread Alexandre Julliard
Alex Villaci­s Lasso <[EMAIL PROTECTED]> writes: > You are right. I did a copy&paste from the SerializeIcon code. What do > you think about this patch? Better, but note that there is a twist with GetIconInfo, if the icon is monochrome the color bitmap is 0 and you then need to get the info from h

Re: OLEPICTURE: Initialize [orig|himetric][Width|Height] for PICTYPE_ICON case

2005-03-29 Thread Marcelo Duarte
Alex Villaci­s Lasso escreveu: Alexandre Julliard wrote: This seems a bit overkill just to retrieve the bitmap size. Couldn't you simply do a GetObject on the bitmap? You are right. I did a copy&paste from the SerializeIcon code. What do you think about this patch? Changelog: * Initialize [

Re: Resent^2 : Zero out return string in GetMenuStr

2005-03-29 Thread Uwe Bonnes
> "Alexandre" == Alexandre Julliard <[EMAIL PROTECTED]> writes: Alexandre> Uwe Bonnes <[EMAIL PROTECTED]> writes: >> Anything wrong with this patch? >> >> Changelog: dlls/user/menu.c: GetMenuStrA|W Initialize return string >> as an empty string Alexandre> You need to

Re: MSVCRT: implement _chsize (RESEND)

2005-03-29 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > Anything wrong with this one? > > This should fix apps built with MinGW (bug report 2826). You should at least restore the file position before returning, though it would probably be better to not change the file position at all, this is not thread sa

discusion about a message loop in listview.c

2005-03-29 Thread Dietrich Teickner
Sorry, this helps Agent 2.0 only with a earlyer try, where I have directly checked the loop inside SendMessageTimeout. After moving this to LISTVIEW_SetItemState only FlashFXP 3.02 works. Agent 2.0 has also a meesageloop (veryfied in Odin), it is not the same as with LISTVIEW_SetItemState. Dietri

Re: Resent^2 : Zero out return string in GetMenuStr

2005-03-29 Thread Alexandre Julliard
Uwe Bonnes <[EMAIL PROTECTED]> writes: > Alexandre, > > also before, there was a NULL written to position Zero of the > string. However there where some checks and function calls that could > return Zero but didn't touch the string. Now there is only a check > that the argument is a pointer befo

Re: OLEAUT32: fix detection of GIF palette index >= 128 for transparency

2005-03-29 Thread Marcelo Duarte
Hi, Andreas Mohr escreveu: Hi, On Tue, Mar 29, 2005 at 12:43:38PM -0500, Alex Villaci­s Lasso wrote: I traced this problem to a one-line bug in the GIF loading code. The code is supposed to initialize a transparency flag to -1 when no transparency is used, or else the palette index of the tran

Re: OLEPICTURE: Initialize [orig|himetric][Width|Height] for PICTYPE_ICON case

2005-03-29 Thread Alexandre Julliard
Alex Villaci­s Lasso <[EMAIL PROTECTED]> writes: > +hdcRef = CreateCompatibleDC(0); > +pInfoBitmap = (BITMAPINFO *)HeapAlloc(GetProcessHeap(), > HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD)); > +pInfoBitmap->bmiHeader.biSize = sizeof(pInfoBitmap->bmiH

Re: ScrollWindow fix for windows with WS_CLIPCHILDREN style, with tests - version 2

2005-03-29 Thread Alexandre Julliard
Rein Klazes <[EMAIL PROTECTED]> writes: > windows : scroll.c > dlls/user/tests : win.c > > If ScrollWindowEx is called with SW_SCROLLCHILDREN flags for a window > with a WS_CLIPCHILDREN style, then do not use the DCX_USESTYLE flag > option to get a DC for this window. With a c

Re: Regression in winealsa (message only?)

2005-03-29 Thread Jeremy White
Hi Paul, I see the same behavior after Robert's change to use plug:hw:0 (and removing my settings in ~/.wine/config). The attached patch 'fixes' the problem for me; can you try it? However, to be honest, the real issue is that I don't really understand what's going on. It appears as though the plu

Re: OLEAUT32: fix detection of GIF palette index >= 128 for transparency

2005-03-29 Thread Andreas Mohr
Hi, On Tue, Mar 29, 2005 at 12:43:38PM -0500, Alex Villaci­s Lasso wrote: > I traced this problem to a one-line bug in the GIF loading code. The > code is supposed to initialize a transparency flag to -1 when no > transparency is used, or else the palette index of the transparency > color. The

Re: Resent^2 : Zero out return string in GetMenuStr

2005-03-29 Thread Alexandre Julliard
Uwe Bonnes <[EMAIL PROTECTED]> writes: > Anything wrong with this patch? > > Changelog: > dlls/user/menu.c: GetMenuStrA|W > Initialize return string as an empty string You need to take the specified length into account before writing to the string. -- Alexandre Julliard [EMAIL PROT

Re: KERNEL: improve stubs for DnsHostnameToComputerName{A,W} (RESEND)

2005-03-29 Thread Alexandre Julliard
"Dmitry Timoshkov" <[EMAIL PROTECTED]> writes: > "Hans Leidekker" <[EMAIL PROTECTED]> wrote: > > > +BOOL WINAPI DnsHostnameToComputerNameA(LPCSTR hostname, > > +LPSTR computername, LPDWORD size) > > > +for (i = 0; i <= len; i++) > > +computername[i] = toupper(hostname[i]); > > Y

Re: BadDrawable and install shield.

2005-03-29 Thread Oliver Stieber
On Tuesday 29 March 2005 16:04, Marcus Meissner wrote: > On Tue, Mar 29, 2005 at 03:19:42PM +0100, Oliver Stieber wrote: > > Hi, > > I've been having a lot of problems with install shield and BadDrawables. > > > > 1: Does anyone know what's causing the problem? > > 2: Are there any plans to imple

discusion about a message loop in listview.c

2005-03-29 Thread Dietrich Teickner
I have some weeks before reported, FlashFXP v3.02 loops with a message-loop in listview.c after login. It does this in Odin and in Wine. In Odin it stops in smaller time (deep 1000). Wine has a bigger stack, and so needs wine more time for this, bat I can see in the loog, the args for the functi

Re: BadDrawable and install shield.

2005-03-29 Thread Marcus Meissner
On Tue, Mar 29, 2005 at 03:19:42PM +0100, Oliver Stieber wrote: > Hi, > I've been having a lot of problems with install shield and BadDrawables. > > 1: Does anyone know what's causing the problem? > 2: Are there any plans to implement XSetErrorHandler and manager the errors > better, even if it'

BadDrawable and install shield.

2005-03-29 Thread Oliver Stieber
Hi, I've been having a lot of problems with install shield and BadDrawables. 1: Does anyone know what's causing the problem? 2: Are there any plans to implement XSetErrorHandler and manager the errors better, even if it's an int3 that winedbg can catch. e.g. int myXErrorHandler(Display *displ

Re: [PATCH] MapiSendMail() implementation

2005-03-29 Thread Kuba Ober
On poniedziaÅek 07 marzec 2005 02:40 pm, Mike Hearn wrote: > On Mon, 2005-03-07 at 20:21 +0100, Michael Stefaniuc wrote: > > Gnome has the notion of "default email client", i suspect KDE has it too. > > Unless you use Bonobo+Evolution (and maybe KMail+DCOP) though you can't > match the abilities of

Re: KERNEL: improve stubs for DnsHostnameToComputerName{A,W} (RESEND)

2005-03-29 Thread Dmitry Timoshkov
"Hans Leidekker" <[EMAIL PROTECTED]> wrote: > +BOOL WINAPI DnsHostnameToComputerNameA(LPCSTR hostname, > +LPSTR computername, LPDWORD size) > +for (i = 0; i <= len; i++) > +computername[i] = toupper(hostname[i]); You can't use toupper() from glibc on a name in a Windows encoding.

Re: Max Payne 2 IDirect3DDevice8Impl_ActiveRender error

2005-03-29 Thread Oliver Stieber
On Tuesday 29 March 2005 14:24, Tom Huckstep wrote: > On Tue, Mar 29, 2005 at 01:33:45PM +0100, Oliver Stieber wrote: > > > err:d3d:IDirect3DDevice8Impl_ActiveRender cannot get valides GLXFBConfig > > > for > > > ... > > > > It's a problem with off-screen textures, your card doesn't support the

Re: Max Payne 2 IDirect3DDevice8Impl_ActiveRender error

2005-03-29 Thread Tom Huckstep
On Tue, Mar 29, 2005 at 02:24:19PM +0100, Tom Huckstep wrote: > My card is a GeForce3, and won't do 32bit (it does do 24bit) Oops, colour depth 24 is 32bpp, isn't it? So changing between 16bpp and 32bpp, has an odd effect, as you can see in the parent post.

Re: Max Payne 2 IDirect3DDevice8Impl_ActiveRender error

2005-03-29 Thread Tom Huckstep
On Tue, Mar 29, 2005 at 01:33:45PM +0100, Oliver Stieber wrote: > > err:d3d:IDirect3DDevice8Impl_ActiveRender cannot get valides GLXFBConfig for > > ... > > It's a problem with off-screen textures, your card doesn't support the > required type, try changing X from 32bit to 16bit or visa-versa and

Re: Max Payne 2 IDirect3DDevice8Impl_ActiveRender error

2005-03-29 Thread Oliver Stieber
On Sunday 27 March 2005 13:07, Tom Huckstep wrote: > Max Payne 2 works fine under the latest Wine CVS through all the 2D parts > (menus), but as soon as I start a new game and it gets to a 3D bit the > screen goes completely blank and I get lots of the following error on my > terminal: > > err:d3d

Re: Preloader Compiles with Coverage Flags

2005-03-29 Thread Mike Hearn
On Tue, 29 Mar 2005 03:22:05 -0800, Aaron Arvey wrote: > This is handy for when you want to compile entire wine source with > gcov coverage analysis enabled. Wonderful! I had thought the problems with the preloader were due to the odd things we do with the stack and assembly in there, but if it's

Re: winspool: some unicodification

2005-03-29 Thread Huw D M Davies
On Tue, Mar 29, 2005 at 12:26:47AM -0500, Dimitrie O. Paun wrote: > ChangeLog > Unicodify WINSPOOL_OpenDriverReg(). > > > Index: dlls/winspool/info.c > === > RCS file: /var/cvs/wine/dlls/winspool/info.c,v > retrieving revision 1.

Re: Dragon Naturally Speaking - working.

2005-03-29 Thread Konstantin Goudkov
Honestly, I don't remember the details. I haven't touched ALSA in a long time, but I do have the same setup. In Wine config (WinMM part), I got "Drivers" = "wineoss.drv" So Wine uses OSS, but I use OSS emulation provided by ALSA. Try running: amixer set Mic cap amixer set Capture cap 10 before

Re: KERNEL32: implement CallNamedPipe

2005-03-29 Thread Dmitry Timoshkov
"Mike McCormack" <[EMAIL PROTECTED]> wrote: > ChangeLog: > * implement CallNamedPipe > +handle = CreateFileW( lpNamedPipeName, GENERIC_READ|GENERIC_WRITE, > + 0, NULL, OPEN_EXISTING, 0, NULL ); > +if( !handle ) > +return FALSE; CreateFile returns INVALID_

Preloader Compiles with Coverage Flags

2005-03-29 Thread Aaron Arvey
This is handy for when you want to compile entire wine source with gcov coverage analysis enabled. See http://www.winehq.org/hypermail/wine-patches/2005/02/.html for more information on how to compile wine with gcov support. Changelog: * loader/preloader.c adds empty __bb_init_func

Re: Patch

2005-03-29 Thread Dmitry Timoshkov
"Leonardo Krause" <[EMAIL PROTECTED]> wrote: > +if ( ((keysym == 0xFF9F) || (keysym == 0x2C)) && (e->state & > NumLockMask)) > +{ > +if (keysym == 0xFF9F) > + return nonchar_key_vkey[keysym & 0xFF]; > +if (keysym == 0x2C) > + return keyc2vkey[0x3B]; >

Re: version: Use proper type for third parameter of VerQueryValue

2005-03-29 Thread Dmitry Timoshkov
"Uwe Bonnes" <[EMAIL PROTECTED]> wrote: > >> -DWORD WINAPI VerQueryValueA(LPVOID,LPCSTR,LPVOID*,UINT*); -DWORD > >> WINAPI VerQueryValueW(LPVOID,LPCWSTR,LPVOID*,UINT*); +BOOL WINAPI > >> VerQueryValueA(const LPVOID,LPCSTR,UINT*,UINT*); +BOOL WINAPI > >> VerQueryValueW(const LPVOID,

AW: Hotel full again?

2005-03-29 Thread Hans-Ulrich Schmid
Hi, there are only three rooms left in the Telekom Hotel (Mail adress: [EMAIL PROTECTED] ) from April 29 - May 1. There is no way to get room there for April 28. The alternatives are: IB-HOTEL AM WALLGRABEN [EMAIL PROTECTED] ++49.711-7876100 http://dsw.nethotels.com/smg/english/Hotels/ib_hotel

Autopackage 1.0

2005-03-29 Thread Boaz Harrosh
now that Autopackage 1.0 is out does any one plan on a Wine Autopackage installer.

Re: Wine on slashdot

2005-03-29 Thread Marcus Meissner
On Tue, Mar 29, 2005 at 10:10:00AM +0200, Jonathan Ernst wrote: > http://games.slashdot.org/games/05/03/28/1843246.shtml?tid=203&tid=106 > > "WineCVS is an extensive script for automated installation of different > versions of wine and Cedega. Today it has been updated to support wine > installa

Wine on slashdot

2005-03-29 Thread Jonathan Ernst
http://games.slashdot.org/games/05/03/28/1843246.shtml?tid=203&tid=106 "WineCVS is an extensive script for automated installation of different versions of wine and Cedega. Today it has been updated to support wine installation with latest DX9 features. The latest patch level of the script now in