Re: ez-cdda sleep

2004-09-28 Thread Marcus Meissner
On Mon, Sep 27, 2004 at 01:45:29PM -0400, James Hawkins wrote: It is doing: 0025:Starting process LC:\\Program Files\\Easy CD-DA Extractor 7\\ezcddax.exe (entryproc=0x 761060) But 0025 never appears again (just as you pressed ctrl-c at the end). So this ezcddax.exe hangs somewhere, perhaps

Re: PATCH: imagelist: change ERR to TRACE

2004-09-28 Thread Andreas Mohr
Hi, On Tue, Sep 28, 2004 at 06:44:16AM +0200, Michael Stefaniuc wrote: Hello, License: LGPL, X11 Changelog: Michael Stefaniuc [EMAIL PROTECTED] - native ImageList_Remove dosn't spit out an error message when deleting an index out of range so don't do that either

Re: PATCH: imagelist: change ERR to TRACE

2004-09-28 Thread Michael Stefaniuc
On Tue, Sep 28, 2004 at 09:42:32AM +0200, Andreas Mohr wrote: On Tue, Sep 28, 2004 at 06:44:16AM +0200, Michael Stefaniuc wrote: License: LGPL, X11 Changelog: Michael Stefaniuc [EMAIL PROTECTED] - native ImageList_Remove dosn't spit out an error message when deleting an

Re: rpcrt4.dll NdrGetUserMarshalInfo() problem

2004-09-28 Thread Mike Hearn
J. Grant wrote: Hello, I am getting the attached error when running an install of Overnet v0.52. Basically it cannot find NdrGetUserMarshalInfo(), despite it being in the dll at entry point: 77d43452h, order 199. Any ideas what this problem could be? I'm expecting this to be the symptom of some

Re: urlmon: IInternetSecurityManager

2004-09-28 Thread Mike Hearn
The convention with COM interfaces is to use the CoTaskMemAlloc / CoTaskMemFree memory management functions instead of the Heap ones (even though they are the same). This is just a slight nit-pick. Hmm, I don't think we should encourage using these APIs. It just makes the code less clear and

Re: missing advapi32 prototype: SystemFunction036

2004-09-28 Thread Mike Hearn
At least some are now documented on MSDN. I believe I submitted a patch to document what 40/41 do (they are crypto related). The fact that an app is using the API strongly implies it's documented *somewhere*, don't you think? I would check for forward exports from other DLLs, for some reason

Re: SystemFunction036 debugging problem

2004-09-28 Thread Andreas Mohr
Hi, On Mon, Sep 27, 2004 at 05:38:10PM -0400, James Hawkins wrote: It turns out that SystemFunction036 is actually required to do something for MyPhotoCalendars.exe to install correctly because the installer exits with a program-level exception (ie not wine) What I would like to do is run

Re: rpcrt4.dll NdrGetUserMarshalInfo() problem

2004-09-28 Thread Andreas Mohr
On Tue, Sep 28, 2004 at 09:25:51AM +0100, Mike Hearn wrote: J. Grant wrote: Hello, I am getting the attached error when running an install of Overnet v0.52. Basically it cannot find NdrGetUserMarshalInfo(), despite it being in the dll at entry point: 77d43452h, order 199. Any ideas what

Re: SystemFunction036 debugging problem

2004-09-28 Thread Mike Hearn
Actually I just added the stub to advapi32, because the program will crash when it tries to call an umimplemented function. The main problem is that the program is expecting some result from SystemFunction036 (Filip thinks it might be a random generator thing), but it's next to impossible (or so

Re: urlmon: IInternetSecurityManager

2004-09-28 Thread Mike McCormack
Huw D M Davies wrote: Good catch. This classfactory code is fairly pervasive in Wine. I'll submit a patch fixing all other occurrences of this in a moment. Maybe we should make a new janitorial task to turn all those class factories into singleton into objects too. It's not necessary to

Upgrade management

2004-09-28 Thread Mike Hearn
There are a bunch of different ways we may want to upgrade the users configuration: - Changes to $WINEPREFIX (~/.wine), for example: - Introducing faked DLL headers - Improved drive detection - Changing the way the registry is stored - Adding stuff to the virtual Windows drive -

Re: urlmon: IInternetSecurityManager

2004-09-28 Thread Mike McCormack
Robert Shearman wrote: Or even better, a single implementation in a header file in include/wine Bonus points for also making a common regsvr implementation too. I considered writing a program to generate the code, since it is boilerplate code. The input could be the header file for the class

Re: urlmon: IInternetSecurityManager

2004-09-28 Thread Robert Shearman
Mike McCormack wrote: Robert Shearman wrote: Or even better, a single implementation in a header file in include/wine Bonus points for also making a common regsvr implementation too. I considered writing a program to generate the code, since it is boilerplate code. The input could be the header

Re: urlmon: IInternetSecurityManager

2004-09-28 Thread Mike Hearn
Or even better, a single implementation in a header file in include/wine Bonus points for also making a common regsvr implementation too. ... And if you convince Alexandre to let us have a wine utilities DLL rather than putting ever more code into inline functions, you win a free stuffed toy :)

Re: urlmon: IInternetSecurityManager

2004-09-28 Thread Boaz Harrosh
Mike McCormack wrote: I considered writing a program to generate the code, since it is boilerplate code. The input could be the header file for the class factory, and the output the implementation. Adding more non-standard header files may not be a direction we want to head in... Mike Rrr,

Re: Upgrade management

2004-09-28 Thread Boaz Harrosh
Mike Hearn wrote: There are a bunch of different ways we may want to upgrade the users configuration: - Changes to $WINEPREFIX (~/.wine), for example: - Introducing faked DLL headers - Improved drive detection - Changing the way the registry is stored - Adding stuff to the virtual

Re: Upgrade management

2004-09-28 Thread Ben A L Jemmett
I'm not sure we should design this system on the assumption that we suck and will probably blow things up. I don't know of any other programs that use such a mechanism when upgrading! Well, Service Packs on Windows have the option (on by default) to back up all changed files just in case

Re: Progress Bar: Fix Class Style Repainting (resend2)

2004-09-28 Thread Alexandre Julliard
Robert Shearman [EMAIL PROTECTED] writes: Changelog: - Fix class style to include the hbrBackground member. - Fix repainting issues introduced by this change. - Add WM_ERASEBKGND handler and remove background drawing code from the WM_PAINT handler. Isn't that going to cause a lot of

Re: Moved some local variables from StartServiceCtrlDispatcherA/W to service environment block

2004-09-28 Thread Alexandre Julliard
Alexander Yaworsky [EMAIL PROTECTED] writes: ChangeLog: Moved some local variables from StartServiceCtrlDispatcherA/W to service environment block. Introduced helper function service_ctrl_dispatcher. I don't think you want to pass ASCII strings across processes, there's no guarantee that

Re: Progress Bar: Fix Class Style Repainting (resend2)

2004-09-28 Thread Dimitrie O. Paun
On Tue, Sep 28, 2004 at 12:12:09PM -0700, Alexandre Julliard wrote: Robert Shearman [EMAIL PROTECTED] writes: Changelog: - Fix class style to include the hbrBackground member. - Fix repainting issues introduced by this change. - Add WM_ERASEBKGND handler and remove background drawing

Re: Upgrade management

2004-09-28 Thread Marcus Meissner
On Tue, Sep 28, 2004 at 12:46:12PM +0100, Mike Hearn wrote: There are a bunch of different ways we may want to upgrade the users configuration: I was always a fan of upgrades, but in the meantime I am more a follower of: If you upgrade to this new version, please re-setup your whole wine

WineHQ Downloads Page

2004-09-28 Thread Adam Schreiber
Could whoever is responsible for updating the website please change the Download page(http://winehq.com/site/download) to read: Slackware binary .tgz for Slackware or Slackware binary .tgz for Slackware 10 The reference to Slackware 9 is confusing users. Thanks, Adam Schreiber -- Why isn't all

Re: Problems installing IE6

2004-09-28 Thread Joaquín Fernández
Stefan Leichter wrote: Hello, i have installed ie6 (SP1)some minutes ago on completely fresh wine enviroment with installed dcom98 using cvs from 2 hours ago. I have a german version from a cdrom. Here is what i did: 1. mv ~/.wine ~/.wine-old 2. wine --version (create the new environment) 3.

WINEDLLOVERRIDES for all dlls?

2004-09-28 Thread James Hawkins
Hi, I'm working on getting ie6 sp1 to install without using any native dlls. The install is fine until about 78% of the way through installing the files, the installer loads a native advapi32 that it downloaded to a temp directory and then the install seems to pause as this message is

Re: WINEDLLOVERRIDES for all dlls?

2004-09-28 Thread Steven Edwards
On Tue, 2004-09-28 at 23:09, James Hawkins wrote: I'm working on getting ie6 sp1 to install without using any native dlls. The install is fine until about 78% of the way through installing the files, the installer loads a native advapi32 that it downloaded to a temp directory and then the