Control.exe Replacement

2004-06-22 Thread Steven Edwards
Hello, This a replacement control panel that was developed for ReactOS until the Control Panel namespace in Shell32 is done. Its far from perfect but seems to be a little better than the older implementation. Feedback is welcome. Thanks Steven Changelog: Gero Kuehn ([EMAIL PROTECTED]) Control.exe

Re: Make sure that both deactivated and activated MDI children receive WM_MDIACTIVATE message in all cases

2004-06-22 Thread Alexandre Julliard
Dmitry Timoshkov <[EMAIL PROTECTED]> writes: > Changelog: > Dmitry Timoshkov <[EMAIL PROTECTED]> > Make sure that both deactivated and activated MDI children > receive WM_MDIACTIVATE message in all cases. This is causing test failures here: win.c:1449: Test failed: rects do not match

Re: Setting up drive letters without wineinstall?

2004-06-22 Thread David Lee Lambert
On Sat, Jun 19, 2004 at 05:42:36PM -0700, Alexandre Julliard wrote: > An initial set of symlinks will be created by wineprefixcreate; they > can then be modified with winecfg (or by changing the symlinks by hand > of course). The plan is also to have winecfg autodetect cdroms but > that's not done

Re: Wine on FreeBSD current

2004-06-22 Thread Alexandre Julliard
Gerald Pfeifer <[EMAIL PROTECTED]> writes: > ...and in fact, Alexandre, wouldn't it be better to have _some_ apps > broken under Wine on FreeBSD than a completely broken Wine on FreeBSD > for all apps? Nope. What matters is not so much how many apps run today, but that we have a design that will

RE: FW: WM_NEXTDLGCTL changes the default button ID and does not rest ore default control identifier

2004-06-22 Thread Krishna Murthy
Title: RE: FW: WM_NEXTDLGCTL changes the default button ID and does not rest ore default control identifier Alexandre, Please find attached modified patch. The method DEFDLG_SetDefButton() now accepts the BOOL bSetDefID parameter to adapt for both DM_SETDEFID and WM_NEXTDLGCTL. Thanks, Krish

Re: LISTBOX_Directory() returns LB_OKAY for invalid directory / f ilen ame

2004-06-22 Thread Alexandre Julliard
Krishna Murthy <[EMAIL PROTECTED]> writes: > Yes! got it, stupid mistake > It should be... > if ((le == ERROR_NO_MORE_FILES) || (le == ERROR_FILE_NOT_FOUND)) return > LB_ERR; That makes more sense, but it still looks wrong, I don't see why you would ignore all other errors. I suspect wha

Re: Wine on FreeBSD current

2004-06-22 Thread John Birrell
On Tue, Jun 22, 2004 at 11:36:16PM +0200, Gerald Pfeifer wrote: > On Sun, 20 Jun 2004, Alexandre Julliard wrote: > > Well, there's a reason for that reservation code, and it's that some > > Windows apps require it; so unless you find some other way to ensure > > that FreeBSD never allocates anythin

RE: LISTBOX_Directory() returns LB_OKAY for invalid directory / f ilen ame

2004-06-22 Thread Krishna Murthy
Title: RE: LISTBOX_Directory() returns LB_OKAY for invalid directory / f ilen ame Yes! got it, stupid mistake It should be... if ((le == ERROR_NO_MORE_FILES) || (le == ERROR_FILE_NOT_FOUND)) return LB_ERR; Thanks, Krishna -Original Message- From: Dimitrie O. Paun [mailto:[EM

Re: LISTBOX_Directory() returns LB_OKAY for invalid directory / f ilen ame

2004-06-22 Thread Dimitrie O. Paun
On Tue, Jun 22, 2004 at 11:08:28AM -0700, Krishna Murthy wrote: > The 'le' is an integer value and not a bitwise value. This means it could > have only one error condition at a time. Right. Because of this fact: > if ((le != ERROR_NO_MORE_FILES) || (le != ERROR_FILE_NOT_FOUND)) return > LB_ERR;

Re: Port to native x86_64?

2004-06-22 Thread Alexandre Julliard
"Sean Kormilo" <[EMAIL PROTECTED]> writes: > Thanks for your perspective. Is this largely because WINE is not an > emulator? I would have thought it possible to have WINE itself compiled > as a 64 bit application (such that it can pick up and use 64 bit linux > libraries), but still represent its

Wine causing a Segmentation Fault

2004-06-22 Thread David Lee
I am using the CVS wine as of 6/22/04 and when I run the compiled binary of wine, I get a Segmentation Fault. In fact, most of the wine* binaries located in /usr/local/bin give me a Segmentation Fault. I have tried a manual compile: ./configure, make depend && make, su -c make install. and u

Re: Remote operations -- need for advice

2004-06-22 Thread Roger Olson
Monday, June 21, 2004 4:00 AM "Alexander Yaworsky" <[EMAIL PROTECTED]> Wrote: > I'm thinking how to implement CreateRemoteThread and besides fix memory management functions. > The complete (afaik) list includes: > RtlCreateUserThread > NtAllocateVirtualMemory > NtFreeVirtualMemory > NtProtectVirtua

Re: bug in sound support?

2004-06-22 Thread Ivan
I haven't tested any non-directx software, anyway, both the winmm and dsound tests give quite a few errors, the logs are attached. I can hear the test tones, BTW the dsound one is much louder than the winmm one for no obvious reason. Ivan. dsound.log.bz2 Description: BZip2 compressed data winmm

Re: bug in sound support?

2004-06-22 Thread Francois Gouget
On Mon, 21 Jun 2004, Ivan wrote: > Wine oss doesn't work with the via82cxxx_audio audio driver shipped in the linux > kernel, no other app has any problems, so I'm wondering if it's wine related. > What info is needed to debug this? You should first determine if your application uses DirectSound

Re: Problem with Soundblaster Live and Wine

2004-06-22 Thread Francois Gouget
Hi, Constantin Bergemann wrote: Hi, I have a problem with my Soundblaster Live and Wine. When running Windows Applications, they often set the mixer level for the PCM channel to 100%. However, the Soundblaster Live under Linux tends to sound a bit dirty at these levels, you have to use values un

Re: Port to native x86_64?

2004-06-22 Thread Sean Kormilo
> > I hope you realize that a 64-bit Wine is not going to let you run > Win32 binaries, so it will only solve your problem if you have either > a Win64 version of your app, or a Winelib app. But as long as you are > aware of that, by all means go ahead, I don't think anybody else is > working on t