Re: wine/dlls/commdlg fontdlg.c

2004-08-15 Thread Dmitry Timoshkov
"Jacek Caban" <[EMAIL PROTECTED]> wrote: > case WM_COMMAND: > -return CFn_WMCommand(hDlg, wParam, lParam, (LPCHOOSEFONTW)lpcf32w); > +return CFn_WMCommand(hDlg, wParam, lParam, (LPCHOOSEFONTA)lpcf32w); No, that's not enough. As Vincent pointed out CFn_WMCommand accesses struc

provider type of Microsoft Base Cryptographic Provider v1.0

2004-08-15 Thread James Hawkins
Hi, If you run regedit in wine and view the following key: HKEY_LOCAL_MACHINE\Software\Microsoft\Cryptography\Defaults\Provider Types\Type 001 Type 001 does not have a "TypeName" value. Should Type 001 have a "TypeName" value? CryptEnumProviderTypes calls RegQueryValueEx on this value to s

Re: [wine] Re: config converting problem

2004-08-15 Thread Vincent Béron
Le dim 15/08/2004 à 00:21, David Lee Lambert a écrit : > On Wed, Aug 11, 2004 at 04:45:20PM +0200, Henning Gerhardt wrote: > > Hi Mike, you wrote: > > > >I'm not sure what to do about this, except maybe to add back in support > > >for ${HOME} style vars. It's clear that people are "using" (at lea

Re: Forcing 32 bit mode in configure

2004-08-15 Thread Adam Petaccia
Wouldn't passing -m32 (if I recall correctly) to gcc tell it to produce 32 bit code? On Sun, 2004-08-15 at 14:55 +0100, Mike Hearn wrote: > Hi, > > Does anybody know how to force gcc to compile in 32 bit mode on 64 bit > chips, and if so could they please write a patch? I've seen quite a few > po

Re: Forcing 32 bit mode in configure

2004-08-15 Thread Steven Edwards
Hi, --- Marcus Meissner <[EMAIL PROTECTED]> wrote: > > Does anybody know how to force gcc to compile in 32 bit mode on 64 > bit > > chips, and if so could they please write a patch? I've seen quite a > few > > posts to end user forums lately saying that people were trying to > compile > > Wine on

Re: More winecfg todos

2004-08-15 Thread Mike Hearn
On Sun, 01 Aug 2004 11:12:52 -0400, Chris Morgan wrote: > Here is a patch that recreates the "Global settings" entry in the app defaults > tab if the user removes it. It also fixes some indenting and removes a > while() loop that was inside of another identical while(). > > Mike, it doesn't l

Re: More winecfg todos

2004-08-15 Thread Mike Hearn
I guess so - please send this patch to me ASAP as I was planning on hacking winecfg a bit next week (dunno if I'll have time but ...) so it'd be nice if I could work from latest sources. I'm not really convinced that being able to configure these paths is a useful thing but I guess if people want

RE: Windows Default Button Observations

2004-08-15 Thread Zach Gorman
> Once you remembered the current (possibly inactive) default > button in DIALOGINFO, this should come for free. I hope at > most one button can be default in a dialog... In Windows, when you click & hold on a button, each button in the dialog gets sent a WM_GETDLGCODE, presumably to determine wh

dlls/commdlg/fontdlg.c regression

2004-08-15 Thread Gerald Pfeifer
The following change to dlls/commdlg/fontdlg.c revision 1.70 date: 2004/08/14 00:42:35; author: julliard; state: Exp; lines: +2 -5 Jacek Caban <[EMAIL PROTECTED]> Fix a bug in passing parameters to CFn_WMInitDialog and CFn_WMCommand in FormatCharDlgProcW. causes the following warning w

Re: More winecfg todos

2004-08-15 Thread Jacek Caban
> You probably want to increase the size of the drive mappings list so it > fills the tab, currently there is just a lot of empty space at the top of > the pane now you removed the old stuff. I have almost ready patch. I've attached screenshot. Is it a good idea? Thanks, Jacek <>

Re: Forcing 32 bit mode in configure

2004-08-15 Thread Marcus Meissner
On Sun, Aug 15, 2004 at 02:55:51PM +0100, Mike Hearn wrote: > Hi, > > Does anybody know how to force gcc to compile in 32 bit mode on 64 bit > chips, and if so could they please write a patch? I've seen quite a few > posts to end user forums lately saying that people were trying to compile > Wine

Re: Large memory reporting

2004-08-15 Thread Shachar Shemesh
Ivan Leo Puoti wrote: Wine will have to unfortunately do the same to achieve 100% compatibility for all the apps that work on windows only thanks to specific hacks. While you are, no doubt, correct that 100% windows compatibility means that we will have to, eventually, do that, I don't think th

Forcing 32 bit mode in configure

2004-08-15 Thread Mike Hearn
Hi, Does anybody know how to force gcc to compile in 32 bit mode on 64 bit chips, and if so could they please write a patch? I've seen quite a few posts to end user forums lately saying that people were trying to compile Wine on AMD64 (and failing, obviously). thanks -mike

Re: Windows Default Button Observations

2004-08-15 Thread Ferenc Wagner
Mike Hearn <[EMAIL PROTECTED]> writes: > On Sun, 15 Aug 2004 11:23:07 +0200, Ferenc Wagner wrote: > >> Once you remembered the current (possibly inactive) default >> button in DIALOGINFO, this should come for free. I hope at >> most one button can be default in a dialog... > > http://weblogs.asp.

Re: Windows Default Button Observations

2004-08-15 Thread Mike Hearn
On Sun, 15 Aug 2004 11:23:07 +0200, Ferenc Wagner wrote: > Once you remembered the current (possibly inactive) default > button in DIALOGINFO, this should come for free. I hope at > most one button can be default in a dialog... http://weblogs.asp.net/oldnewthing/archive/2004/08/02/205624.aspx I'

Large memory reporting

2004-08-15 Thread Ivan Leo Puoti
> /* work around for broken photoshop 4 installer */ You may have to consider handling this like Microsoft does. If you read trough m$ blogs, you'll find that what microsoft usually does is have all sort of workarounds for broken apps, without them lots of stuff would not run on window xp. To wo

Re: Large memory reporting

2004-08-15 Thread Dmitry Timoshkov
"Shachar Shemesh" <[EMAIL PROTECTED]> wrote: > If so, is there a way for me, when at the heap.c code, to know whether > that flag was set on loading the current process? (copied from dlls/ntdll/loader.c): PEB *peb = NtCurrentTeb()->Peb; IMAGE_NT_HEADERS *nt = RtlImageNtHeader( peb->ImageBaseAdd

Re: Windows Default Button Observations

2004-08-15 Thread Ferenc Wagner
"Zach Gorman" <[EMAIL PROTECTED]> writes: > My impression is that (1) could be handled by remembering > the default button (which, as Krishna Murthy has shown, is > not the same as the default button id) in the DIALOGINFO > structure. > > Number (2), however, is more difficult. When a button > rec

Re: wine/dlls/commdlg fontdlg.c

2004-08-15 Thread Jacek Caban
Vincent Béron wrote: Le ven 13/08/2004 à 20:42, Alexandre Julliard a écrit : ChangeSet ID: 13294 CVSROOT:/opt/cvs-commit Module name:wine Changes by: [EMAIL PROTECTED] 2004/08/13 19:42:35 Modified files: dlls/commdlg : fontdlg.c Log message: Jacek Caban <[EMA

Large memory reporting

2004-08-15 Thread Shachar Shemesh
Hi list, I have a Windows program that tries to find out how much memory it has at its disposal using "GlobalMemoryStatus". The machine has 4GB of physical memory and about 100MB of swap. GlobalMemoryStatus returns 2GB of physical memory and 0 available swap. It seems the problem is at dlls/ker

Re: console message encoding

2004-08-15 Thread Eric Pouech
Vitaly Lipatov a écrit : Is it known that console message printed to output in wine internal encoding (OEM?), not in locale encoding. Is it bug or just needed coding right behavior? For example, I have koi8-r as locale encoding, cp866 as OEM CP and cp1251 as ANSI CP. In windows, the default CP f