Re:SetConsoleTitle

2002-05-02 Thread Eric Pouech
the server just misses the instruction to notify the wineconsole program of a change in the title... I'll submit a patch tonight so you can safely implement the TITLE command you can try adding this in server/console.c (function set_console_input_info, just after the new title is set when the

Re: Chinese text input into Notes R6 Mail field (windows/defwnd.c??)

2002-05-02 Thread leanne
Daniel Schwarz wrote: Actually Aric and Ulrich helped a lot and they provided us the patch you Codeweavers did for your clients and Aric has gained permission to open the source. Since he needs to clean up the code, he suggested to let him post the patch when it's done. I used it to try for

Re: Chinese text input into Notes R6 Mail field (windows/defwnd.c??)

2002-05-02 Thread leanne
leanne wrote: Daniel Schwarz wrote: Actually Aric and Ulrich helped a lot and they provided us the patch you Codeweavers did for your clients and Aric has gained permission to open the source. Since he needs to clean up the code, he suggested to let him post the patch when it's done. I used

Re: Chinese text input into Notes R6 Mail field (windows/defwnd.c??)

2002-05-02 Thread leanne
leanne wrote: leanne wrote: Daniel Schwarz wrote: Actually Aric and Ulrich helped a lot and they provided us the patch you Codeweavers did for your clients and Aric has gained permission to open the source. Since he needs to clean up the code, he suggested to let him post the patch when it's

Re: xrender patch

2002-05-02 Thread Huw D M Davies
On Wed, May 01, 2002 at 09:02:00PM -0700, Duane Clark wrote: The xrender CVS patch of 4/23 is causing one of my apps to crash: Unhandled exception: page fault on read access to 0x in 32-bit code (0x438198ee). In 32-bit mode. Symbol h_errno is invalid Symbol __strtol_internal is

Re: Chinese text input into Notes R6 Mail field (windows/defwnd.c ??)

2002-05-02 Thread Dmitry Timoshkov
leanne [EMAIL PROTECTED] wrote: LRESULT WINAPI DefWindowProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ); case WM_IME_CHAR: charW = wParam; printf(DefWindowProcA WM_IME_CHAR %08x\n, charW); // I got it correct! - 4f60 (unicode of you in Chinese) //Is there something wrong

PATCH - makedep

2002-05-02 Thread Steven Edwards
I don't know if this will cause any problems for other platforms but it works here. Of course so did my last dirty hack so can someone point out a better way? According to http://www.delorie.com/djgpp/doc/libc/libc_95.html if the system has ftruncate it just calls it. If this isnt cool then

RE: fix brainfade

2002-05-02 Thread Medland, Bill
Alexandre Yes, go with Francois' Bill -Original Message- From: Francois Gouget [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 3:27 PM To: Wine patches (E-mail) Subject: Re: fix brainfade Or (but mine may have space/tab problems): Index:

Close X after one hour and half

2002-05-02 Thread Marcelo Welter
Hello friends a run my applicationwith wine and xinit like: xinit wine myapp.exe -- :0 running very well, but after one hour and half this broken my X session and back to text console... i not see a messagem that refer to this problem in the screen and logs are equal I dont understand what

Re: a small error in Wine, when it gets to the make install stage..

2002-05-02 Thread Vincent Béron
Ya'ad Golani a écrit : Good evening. Hi, When trying to install wine-20020411 I got the following error message (running through the wineinstall script, and not manually): - Performing 'make install' as

Re: xrender patch

2002-05-02 Thread Duane Clark
Huw D M Davies wrote: On Wed, May 01, 2002 at 09:02:00PM -0700, Duane Clark wrote: The xrender CVS patch of 4/23 is causing one of my apps to crash: Unhandled exception: page fault on read access to 0x in 32-bit code (0x438198ee). In 32-bit mode. Symbol h_errno is invalid Symbol

Re: PATCH - makedep

2002-05-02 Thread Marcus Meissner
On Thu, May 02, 2002 at 05:48:25AM -0400, Steven Edwards wrote: I don't know if this will cause any problems for other platforms but it works here. Of course so did my last dirty hack so can someone point out a better way? According to http://www.delorie.com/djgpp/doc/libc/libc_95.html if

meaning of server request results...

2002-05-02 Thread Michael Cardenas
Hello all. I'm still trying to debug why aol can't communicate with the aol web proxies. Doing a trace+winsock,trace+server I get this over and over when the request to the web proxy is made... does anyone know what's the significance of the server select returning PENDING and TIMEOUT?

Re: xrender patch

2002-05-02 Thread Jeremy White
That does fix it, though I was getting used to the client side fonts :( What version of XFree86 is needed to get a good xrender? I am running version 4.1.0. You need 4.2.0. You can also just build libXrender.so, which is not that hard to pull out of CVS and build by itself. Finally, I have

Re: xrender patch

2002-05-02 Thread Michael Cardenas
On Thu, May 02, 2002 at 12:04:04PM -0500, Jeremy White wrote: That does fix it, though I was getting used to the client side fonts :( What version of XFree86 is needed to get a good xrender? I am running version 4.1.0. You need 4.2.0. You can also just build libXrender.so, Do you mean

Re: xrender patch

2002-05-02 Thread Duane Clark
Jeremy White wrote: That does fix it, though I was getting used to the client side fonts :( What version of XFree86 is needed to get a good xrender? I am running version 4.1.0. You need 4.2.0. You can also just build libXrender.so, which is not that hard to pull out of CVS and build by

Correct approach to deploy Wine applications

2002-05-02 Thread Andriy Palamarchuk
I'm currently working on bug 585 - wine installation process should install and configure wine applications. The first part of the work is done - wine applications, like regedit are installed by Wine build process. I wanted to ask you about correct approach to place these applications to deploy

Re: menu behaviour on window losing focus

2002-05-02 Thread Alexandre Julliard
Rizsanyi Zsolt [EMAIL PROTECTED] writes: Can somebody please point me to the point in code where I should put my deactivation (a code which is called on window deactivation), and also to the function by which I can deactivate the menu. This is supposed to be done by the WM_CANCELMODE

Re: Correct approach to deploy Wine applications

2002-05-02 Thread Alexandre Julliard
Andriy Palamarchuk [EMAIL PROTECTED] writes: regedit - /usr/local/bin/wine regedit.so - /usr/local/bin/regedit.so regedit.exe - /usr/local/bin/wine regedit.exe.so - /usr/local/bin/regedit.so The .exe variant should be enough. Wine will append .exe if there's no extension. This fixes

Re: Correct approach to deploy Wine applications

2002-05-02 Thread Andreas Mohr
On Thu, May 02, 2002 at 12:17:32PM -0700, Andriy Palamarchuk wrote: I'm currently working on bug 585 - wine installation process should install and configure wine applications. The first part of the work is done - wine applications, like regedit are installed by Wine build process. I

Re: wine/ ./winedefault.reg dlls/Makefile.in dlls/ ...

2002-05-02 Thread Michael Cardenas
Who's Hidenori? Is this code being moved somewhere else? On Wed, May 01, 2002 at 08:29:19PM -0500, Alexandre Julliard wrote: ChangeSet ID: 1020302959714181280302913 CVSROOT: /opt/cvs-commit Module name: wine Changes by: [EMAIL PROTECTED] 02/05/01 20:29:19 Modified files:

Please report this

2002-05-02 Thread Medland, Bill
err:clipping:CLIPPING_UpdateGCRegion. hVisRgn is zero. Please report this. Duly reported. Anyone know why we cared? It's been in the code since the initial revision. Bill

RE: wine/ ./winedefault.reg dlls/Makefile.in dlls/ ...

2002-05-02 Thread Steven Edwards
Who's Hidenori? Is this code being moved somewhere else? If the code was licensed X11 at one point are we still free to use it? Every revolution was once a thought in one man's mind - Ralph Waldo Emerson

RE: More MSVC fixes

2002-05-02 Thread Steven Edwards
How are you planning on linking the dlls/resources once wine is up 2 date on MSVC? Can MSVC build wrc resources and link them? Thanks Steven Every revolution was once a thought in one man's mind - Ralph Waldo Emerson

RE: wine/ ./winedefault.reg dlls/Makefile.in dlls/ ...

2002-05-02 Thread Hidenori TAKESHIMA
I'm sorry, but I don't want to distribute my MultiMedia codes now... (I solicited Alexandre to remove my codes) Please don't use my removed code anymore... And I sent patches to removing from ReWind too, but is not applied yet now... Hidenori

Re: xrender patch

2002-05-02 Thread Huw D M Davies
On Thu, May 02, 2002 at 10:17:32AM -0400, Michael Cardenas wrote: On Thu, May 02, 2002 at 12:04:04PM -0500, Jeremy White wrote: That does fix it, though I was getting used to the client side fonts :( What version of XFree86 is needed to get a good xrender? I am running version 4.1.0.

Re: wine/ ./winedefault.reg dlls/Makefile.in dlls/ ...

2002-05-02 Thread Michael Cardenas
I don't think you can do that under the GPL. Why do you want the code removed? On Fri, May 03, 2002 at 07:58:44AM +0900, Hidenori TAKESHIMA wrote: I'm sorry, but I don't want to distribute my MultiMedia codes now... (I solicited Alexandre to remove my codes) Please don't use my removed

Re: Please report this

2002-05-02 Thread Huw D M Davies
On Thu, May 02, 2002 at 02:59:02PM -0700, Medland, Bill wrote: err:clipping:CLIPPING_UpdateGCRegion. hVisRgn is zero. Please report this. Duly reported. Anyone know why we cared? It's been in the code since the initial revision. Due to Alexandre's recent dll separation changes. psdrv

Re: wine/ ./winedefault.reg dlls/Makefile.in dlls/ ...

2002-05-02 Thread Michael Cardenas
I don't know the details, maybe he does. I was just asking. On Fri, May 03, 2002 at 02:16:55AM +0200, Jakob Eriksson wrote: He can _ask_ for it to be removed, but once released under a normal OpenSource license, there is no way to _force_ everyone and her mother to remove it. But maybe

known x11drv issue?

2002-05-02 Thread Chris
hullo everybody, i'm new to the wine-devel list, but i was wondering if this: http://chris.luethy.net/wine/image.jpg was a known issue. Whenever you drag around flat-edged windows (I'm not sure what the offical name is in Win32), like the type you see in Winamp's preferences or any

Re: known x11drv issue?

2002-05-02 Thread Andriy Palamarchuk
Hello Chris, --- Chris [EMAIL PROTECTED] wrote: hullo everybody, i'm new to the wine-devel list, but i was wondering if this: http://chris.luethy.net/wine/image.jpg was a known issue. Whenever you drag around flat-edged windows (I'm not sure what the offical name is in Win32),

Re: Correct approach to deploy Wine applications

2002-05-02 Thread Sylvain Petreolle
--- Alexandre Julliard [EMAIL PROTECTED] a écrit : Andriy Palamarchuk [EMAIL PROTECTED] writes: regedit - /usr/local/bin/wine regedit.so - /usr/local/bin/regedit.so regedit.exe - /usr/local/bin/wine regedit.exe.so - /usr/local/bin/regedit.so This fixes problems with full path and

Application Database RFC

2002-05-02 Thread Tony Lambregts
I have done a lot of thinking about the Application Database http://appdb.codeweavers.com lately and how the rating system works. We currently have 848 Applications in there but only 58 with a 5 star rating which works out to less than 10% and thats the good news. The bad news is that of those