Re: (no subject)

2003-08-03 Thread Francois Gouget
On Sun, 3 Aug 2003, [EMAIL PROTECTED] wrote: I've decided I'll include the wine faq and wine user guide into my next wine rpm, but I've noticed that the docs need some updates. For a start, they need a version for rpm packages, it seems a bit crazy to install a binary rpm of wine, open the

(no subject)

2003-08-02 Thread [EMAIL PROTECTED]
I've decided I'll include the wine faq and wine user guide into my next wine rpm, but I've noticed that the docs need some updates. For a start, they need a version for rpm packages, it seems a bit crazy to install a binary rpm of wine, open the user manual, and find a guide on where you can

Re: [RESENT] Subject: Release GWL_ID with DestroyMenue, eventually

2003-07-08 Thread Alexandre Julliard
Uwe Bonnes [EMAIL PROTECTED] writes: wine/controls/menu.c: DestroyMenu Release GWL_ID of lppop-hWnd if it is the same hMenu we are going to destroy This lets Capital Eimkommenssteuer 2003 (Infotax Steuer02) access it's Menu bar. This is wrong, Windows doesn't do

Not to bring up a (probably) long-dead subject, but...

2003-06-17 Thread Dustin Navea
I was looking thru the archives of WWN and found this: Tony Lambregts submitted a patch that added a new filesystem type: Some program (VirtualDub) checks the fsname returned by GetVolumeInformation, to find the name of the file system, when it needs to write files that are larger than 2GB. It

(no subject)

2003-03-09 Thread Alireza Mahini
I would like to use a win32 DLL in what is otherwise a native Linux application. I want to do this by using WINE. According to the documentation that comes with the DLL, a Windows program can load it with the following code (the names have been changed to protect the innocent -- me):

(no subject)

2002-07-03 Thread Steven Edwards
Anyone planning on attending the Linux World Expo? I was going to be in the Bay area on the 12th anyway to tour Berkley so I think I'm going to extend my trip to make the show. Steven __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World

(no subject)

2002-05-12 Thread Paul Millar
Hi, I've tried to get wine to compile under a 2.2.17 kernel machine (w/ RedHat 7.0), not particularly because of Stefan's problems under RH-5.2, but trying to track down some other bugs (although hopefully the patches will help a little :) The first stumbling block was in dlls/ntdll/cdrom.c.

Re: (no subject)

2002-05-12 Thread Francois Gouget
On Sun, 12 May 2002, Paul Millar wrote: [...] The first stumbling block was in dlls/ntdll/cdrom.c. Two routines in the file try to set members of the cdrom_generic_command structure (defined in linux/cdrom.h) that don't exist in 2.2.x kernels, but do exist in 2.4.x kernels. See also the

CDROM patch - take 2 (was: no subject)

2002-05-12 Thread Paul Millar
On Sun, 12 May 2002, Francois Gouget wrote: See also the patch I sent there: http://www.winehq.com/hypermail/wine-devel/2002/05/0244.html Sorry Francois, I had read your email but missed the bottom half of your patch. I've altered the patch so it just augments yours. Now it just adds the

Re: CDROM patch - take 2 (was: no subject)

2002-05-12 Thread Alexandre Julliard
Paul Millar [EMAIL PROTECTED] writes: I think the bug is lack of support in earlier kernels, which we have limited control over. We could issue a warning during the configure stage that there might be problems with CDROM drives, but if wine uses features only present in recent kernels, then

(no subject)

2002-03-20 Thread Sylvain Petreolle
Hi all, --- Hetz Ben Hamo [EMAIL PROTECTED] a écrit : On Wednesday 20 March 2002 21:39, Michael Cardenas wrote: That is an old problem that's been resolved. Are you using a current version of wine? I'm using current CVS to run it. the errors that appears to be a graphic issue for the

(no subject)

2002-02-27 Thread Mike McCormack
Hi Mehmet, I created the problematic change in question. Without the change, when StgOpenStorage is called with an existing zero length file as the filename, it fails because it suceeded in opening the file but expects it to have valid content... Unfortunately, the change was merged

(no subject)

2002-01-14 Thread Mike McCormack
Hi Sam, This list is for discussing development of Wine, not Windows NT applications. If you have a Windows binary that you want to run in Linux, then get back to us. If you're writing a program to run in Linux, then use termios to solve your problem. If you're writing a program for Windows

Re: (no subject)

2001-11-28 Thread eric pouech
Ryan C. Stallings wrote: Hello all, I am new to the wine scene and would like to try my hand at a little wine hacking. Are there any bugs out there that would be easy for a newbie to fix while letting me learn a bit about the inner workings of wine? I have read all the material

Re: (no subject)

2001-11-27 Thread Andreas Mohr
On Mon, Nov 26, 2001 at 08:02:32PM -0500, Ryan C. Stallings wrote: Hello all, I am new to the wine scene and would like to try my hand at a little wine hacking. Are there any bugs out there that would be easy for a newbie to fix while letting me learn a bit about the inner workings

Re: (no subject)

2001-11-27 Thread David Hammerton
Its also a good idea to hang out in #winehq on irc.openprojects.net, then you can nag the more experienced developers and pick up problems that people report and attempt to fix them :). David On Tue, 27 Nov 2001 11:19:01 +0100, Andreas Mohr wrote: | On Mon, Nov 26, 2001 at 08:02:32PM -0500,

(no subject)

2001-11-26 Thread Ryan C. Stallings
Hello all, I am new to the wine scene and would like to try my hand at a little wine hacking. Are there any bugs out there that would be easy for a newbie to fix while letting me learn a bit about the inner workings of wine? I have read all the material about getting started

Re: (no subject) (msvcrt.getenv)

2001-11-20 Thread Francois Gouget
On Tue, 20 Nov 2001, Uwe Bonnes wrote: Changelog: dlls/msvcrt/environ.c: MSVCRT_getenv Compare for the length of the key and return NULL in case of failure Good catch. Another thing to keep in mind: IIRC environment strings are not case sensitive on Windows. This means

Re:(no subject)

2001-10-31 Thread Simon Britnell
--- Eric Pouech [EMAIL PROTECTED] wrote: you just need to make a windows handle from the unix fd (the one of /dev/dsp) and do a WaitOnMultipleObjects with 2 handles : - the /dev/dsp handle - the synchronization mechanism with all the wodXXX functions. Didn't know I could do that. I do now

Re:(no subject)

2001-10-30 Thread Eric Pouech
I had an idea for using poll or select (rather than calculating expected play time and using a timeout) in audio.c The idea is to have a thread that sits on a select and dispatches a synthetic wine event (ie. we'd make up a WM_DSP_READY event) when the select returns. well, from a generic

Re:(no subject)

2001-10-30 Thread Simon Britnell
--- Eric Pouech [EMAIL PROTECTED] wrote: well, from a generic point of view this is something to be done however, I don't see where you'd like to dispatch the event to ? the playback thread in this case would have to wait on two different things: - the /dev/dsp fd (when the queue becomes

Re:(no subject)

2001-10-30 Thread Eric Pouech
The idea is to have a (new) thread which does nothing but sit in a select and then generate wine events whenever the select returns. Various sound system events cause /dev/dsp to be added to or removed from the select list so that it generates a (new) WINE_WM_DSP_READY event. my point is

(no subject)

2001-10-26 Thread Mike McCormack
Hi Andreas, i had a bit more free time, so i tracked down the rendering problem in NetTerm a bit more. The problem occurs after SelectVisRgn16 is called with the same region as that currently selected in the DC. (eg. dc-hVisRgn == hrgn ). I made a dodgy patch to fix the problem by incrementing

(no subject)

2001-10-26 Thread Andriy Palamarchuk
Alexandre Julliard wrote: Andriy Palamarchuk [EMAIL PROTECTED] writes: Do you think it is better to do lazy loading for most parameters? Yes definitely. Ok, how about this: Each system parameter has is_loaded flag which shows whether the parameter is loaded or not. Parameters, stored

notepad.spec.c subject to signal 11 with ceratin GCCs

2000-08-02 Thread Uwe Bonnes
Hallo, I know, egcs 2.91 isn't recommended. But before other stumble on it here a short report: hertz:/spare/bon/wine/programs/notepad make cd ../../tools/wrc make wrc make[1]: Entering directory `/usr/local/spare/bon/wine-adsep/tools/wrc' make[1]: `wrc' is up to date. make[1]: Leaving

Unidentified subject!

2000-03-27 Thread Steve Langasek
On Fri, 24 Mar 2000, Oleg Noskov wrote: here at Corel we already have pretty much the same functionality you're discussing here already developed and shipping since Corel Linux 1.0. Here's what we do in brief: - we have a constantly running server process (called netserv) which does

No Subject

2000-02-16 Thread Frank Eising
unsubscribe