Re: Patch for Bugzilla Bug 6323

2007-01-30 Thread Dmitry Timoshkov
"Dean Kusler" <[EMAIL PROTECTED]> wrote: In dlls/winex11.drv/keyboard.c, XmbLookupString was being called with KeyRelease events, which has undefined behavior (in this case, it fails to return a valid keysym for numpad key releases). By instead calling XLookupString in the case of a KeyRelease

Re: Test for LoadString

2007-01-30 Thread Dmitry Timoshkov
"Vitaly Lipatov" <[EMAIL PROTECTED]> wrote: Add tests for LoadString, completed on Windows. As I see, 1. LoadStringA with buf = NULL segfaults in Windows, we have to produce ERR message instead 2. LoadStringA with buf = NULL, buflen = 0 returns -1 3. LoadStringW with some buf, buflen = 0 retu

skipping incompatible libwine build problem.

2007-01-30 Thread Matthew Watchinski
Hopefully this is the right mailing list to ask this. If not please point me to the correct list. I have a simple application that use to build just fine using libwine/wine-0.9.30 on ubuntu edgy 32-bit. I just upgraded to a 64 bit system and got wine-0.9.30 installed and working, however, now my

Re: Do not use LoadStringW for get strlen of resource string

2007-01-30 Thread James Hawkins
On 1/30/07, Vitaly Lipatov <[EMAIL PROTECTED]> wrote: As LoadStringW(...NULL,0) returns length of resource string only in Wine, rewrote this part in independent manner. Changelog: - do not use LoadStringW for get strlen of resource string This is wrong: @@ -75,15 +75,16 @@ static LPWSTR HH

re: Please help me debug wineserver

2007-01-30 Thread Dan Kegel
Misha wrote: I am new to wine programming but have a fair amount of experience with C/C++ programming in general. I have recently decided to make the Vector NTI application work on Wine, and after overcoming quite a few installation difficulties by making an install shell script, Cool. Can you

Re: [lostwages] Update download-deb page with better information, error fixes

2007-01-30 Thread Detlef Riekenberg
On Di, 2007-01-30 at 01:09 -0800, Scott Ritchie wrote: > + > +While there is currently no Wine package explicitly designed for > the 64-bit version > +of Ubuntu, there are several hacks that can be used to install the > 32-bit package > +into the 64-bit distribution and have it function normally.

Re: [PATCH 7/7] server/kernel32: Marshal security descriptor to server for a new process.

2007-01-30 Thread Vitaliy Margolen
Mirek wrote: > Hi, i cant compile wine with this patch, do you know why? > You need to run `tools/make_requests`. All patches to wineserver sent to wine-patches don't have auto-generated parts. Vitaliy.

Re: [PATCH 7/7] server/kernel32: Marshal security descriptor to server for a new process.

2007-01-30 Thread Mirek
Hi, i cant compile wine with this patch, do you know why? gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -DCOM_NO_WINDOWS_H -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o regsvr.o regsvr.c make[2]: Lea

test.winehq.com status

2007-01-30 Thread Felix Nawothnig
Hi. Anyone knows what happened to test.winehq.com/data? There has been no new crossbuilds for quite some time now... Felix

Please help me debug wineserver

2007-01-30 Thread Misha Koshelev
Hi, I am new to wine programming but have a fair amount of experience with C/C++ programming in general. I have recently decided to make the Vector NTI application work on Wine, and after overcoming quite a few installation difficulties by making an install shell script, I have run in to a problem

Re: Test case for Bug 50 [Was: Bug 50]

2007-01-30 Thread Pedro Araujo Chaves Jr.
On 1/30/07, Dmitry Timoshkov wrote: Then probably DrawText(DT_CALCRECT) could better suit your needs. Almost on the bull's-eye! Actually, DrawText() returns the *height* of the string... how lucky I am, huh? But a "See Also" link in the MSDN page for DrawText() [1] pointed me to TabbedTextOu

Detect screen resolution change errors

2007-01-30 Thread Francois Gouget
When I run the dlls/d3d9/device conformance test on Windows in VMware, I get a trace telling me that IDirect3D9_CreateDevice() failed and returned 0x8876086c. This seems to be because Windows has trouble changing the screen resolution when running in VMware (though it's perfectly capable of d

Daylight saving changes

2007-01-30 Thread Francois Gouget
Quite a few countries seem to be changing their daylight saving rules this year. Also Wine stores timezone information in the registry so won't we need to update the data we store in the registry? While looking at wine's timezone data I also found quite a few differences with Windows' data.

Bugzilla: Adding a 'patch' keyword

2007-01-30 Thread Francois Gouget
During a query I've stumbled on bug 5012 which happens to have a patch attached to it. Nine months ago it was suggested to the author to send this patch to wine-patches but either he didn't do it or it was not accepted. Now, I don't consider myself qualified to judge the patch and I have no p

Re: [msvcrt] stat64 (1/3) add declarations for stat64, fstat64 and wstat64

2007-01-30 Thread Francois Gouget
On Tue, 30 Jan 2007, Damjan Jovanovic wrote: > Changelog: > * Added declarations for stat64, fstat64 and wstat64 --- a/include/msvcrt/sys/stat.h 2006-11-24 18:18:04.0 +0200 +++ b/include/msvcrt/sys/stat.h 2007-01-28 15:48:28.0 +0200 @@ -104,6 +104,20 @@ +struct __stat64 { + _dev

Re: [ws2_32] INET_ADDRSTRLEN (1/2) add INET_ADDRSTRLEN and INET_ADDRSTRLEN6

2007-01-30 Thread Francois Gouget
On Tue, 30 Jan 2007, Damjan Jovanovic wrote: > Changelog: > * Added INET_ADDRSTRLEN and INET_ADDRSTRLEN6 defines. > > --- a/include/ws2tcpip.h2006-11-24 18:18:04.0 +0200 > +++ b/include/ws2tcpip.h2007-01-26 21:14:25.0 +0200 > @@ -204,6 +204,9 @@ > # define WS_EAI_S

Re: Make.rules.in: Generate better output

2007-01-30 Thread Francois Gouget
On Tue, 30 Jan 2007, Bang Jun-Young wrote: > It's quite annoying to see tons of ugly "gcc -I. -I. -I../../include > -I../../include" > on the screen during build and in the log file thereafter, so... [...] > +ifeq ($(TOPSRCDIR),$(TOPOBJDIR)) > +ifeq ($(SRCDIR),.) > +INCLUDES = -I. -I$(TOPSRCDI