Re: new old winetests

2003-12-02 Thread Dimitrie O. Paun
On December 2, 2003 11:10 am, Brian Vincent (C) wrote: > It came out shortly after as an add-on and > was likely first included in OSR2. Not a big deal, we'd be hard pressed to find a Win95 pre OSR2 system these days anyway. We can live with it. -- Dimi.

Re: [clock04] Tidy up resources

2003-12-02 Thread Alexandre Julliard
Richard Cohen <[EMAIL PROTECTED]> writes: > Alexandre Julliard wrote: > > Your mailer has corrupted the 8-bit chars, could you please resend >> differently? > > Hmm, .. mozilla sent it as text/plain,8-bit,inline > Looks fine to me, and I can save and apply the patch OK. You are right, the probl

Re: new old winetests

2003-12-02 Thread Ferenc Wagner
"Brian Vincent (C)" <[EMAIL PROTECTED]> writes: >>> -- we're linking against ws2_32 >>> Is this DLL available on all versions of Windows we >>> want to run on? >> >> As far I know >> >> yes. > >

Re: new old winetests

2003-12-02 Thread Brian Vincent (C)
Title: Re: new old winetests >>   -- we're linking against ws2_32 >>  Is this DLL available on all versions of Windows we >>  want to run on? > >As far I know > >yes.  But I am not sure whether

Re: wine in the press

2003-12-02 Thread Jakob Eriksson
Warning: you can skip the comments at OSnews of that article. Really boring mudslinging back and forth. Tom wrote: http://www.osnews.com/story.php?news_id=5262 ill add it to the press page in a couple days ill look around for other articles as well. Tom

Re: Installshield7 notes

2003-12-02 Thread Daniel Kegel
"Gregory M. Turner" <[EMAIL PROTECTED]> wrote in reply to http://marc.theaimsgroup.com/?l=wine-devel&m=106746370617833&w=2 : Could you recommend any particular installer that fails to me (preferably something I can download for free)? I'd be happy to take a look at this, although I can't make an

JournalPlayBack hook

2003-12-02 Thread Juan Antonio Boscá Lloret
Hello,   I'm trying to use the JournalPlayBack hook in a Win32 application and it doesn't work. However it looks to work in 16 bits. Any idea? Thank you   ---Juan Antonio Boscá LloretDepartamento Programación CAE, S.A.[EMAIL PROTECTED

Re: 64bit Wine?

2003-12-02 Thread J. Grant
Marvelous, Thanks for the responce guys. JG on the 02/12/03 16:06, Marcus Meissner wrote: On Tue, Dec 02, 2003 at 08:02:37AM -0600, Jeremy White wrote: >>I'm considering getting an Opteron. With this being a 64bit CPU I >>wondered if there would be any issues with using WINE to make use of >>

Problem with latest MDK package.

2003-12-02 Thread Peter Nunn
Hi folks, not sure if this belongs on this list or not, and its probably a stupidly simple question, but its got me stumped. I just installed the latest MDK package for wine (wine-20031118-mdk.i586) to update the one that shipped with MDK 9.2 (wine-20030813-1mdk.i586). Now, when I try and run wi

IDA speed problem analysis

2003-12-02 Thread Andrew de Quincey
Hi, I've been doing some more work on this, and I think I've found the culprit (my apologies to everyone for the crap I've been talking recently). Whenever IDA opens the Save box.. and in fact when it does a lot of operations, it seems to completely regenerate its menus. It uses an MDI interfac

Re: WineX 3.2

2003-12-02 Thread Gavriel State
Ivan Leo Murray-Smith wrote: My free RPMs can't hurt Transgaming. For a start, on my winex page, I have a complete list of the features that only the commercial version has, and an invitation to subscribe to Transgaming if you want those extra features. As the freeware version doesn't include insta

Sound capture issues...

2003-12-02 Thread Thomas Brix Larsen
Hi list, in the voice com program Skype (www.skype.org), I'm able to hear other people but I can't talk to them myself. Does anyone have a clue why? I believe this program uses DirectX to capture voice input. Not implented? Greetings, --Thomas _ My worst enemy gave me a copy of

Re: Question about simple profiling implementation

2003-12-02 Thread Alexandre Julliard
Andrew de Quincey <[EMAIL PROTECTED]> writes: > As you say, relay debugging adds a huge overhead... however, would you say > that this overhead would be fairly constant for each particular function? No, it all depends on what other functions it is calling, and this may change for each call. >

Re: new old winetests

2003-12-02 Thread Dimitrie O. Paun
On December 2, 2003 02:39 pm, Alexandre Julliard wrote: > Without modifying the app I don't know, but in this case you could use > CreateDirectory instead. Of course we can, for whatever reason we go stuck into using the std C lib. Not a problem. > The crosstest stuff is a hack that's here to mak

Re: Question about simple profiling implementation

2003-12-02 Thread Andrew de Quincey
On Tuesday 02 December 2003 18:21, Shachar Shemesh wrote: > Dimitrie O. Paun wrote: > >On December 2, 2003 08:52 am, Andrew de Quincey wrote: > >>As you say, relay debugging adds a huge overhead... however, would you > >> say that this overhead would be fairly constant for each particular > >> func

Re: new old winetests

2003-12-02 Thread Alexandre Julliard
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > Well, unfortunately, the mkdir() bit is a ugly wart. I've run > into it in other projects (wxWindows comes to mind). If anyone > can figure out a solution that doesn't involve modifying the > app, let me know. Until then this should do. Without mod

Re: Question about libwine_unicode functions and others in WINE

2003-12-02 Thread Alexandre Julliard
"Robert Shearman" <[EMAIL PROTECTED]> writes: > However, couldn't we just replace the libwine_unicode function with an > appropriate (well-documented) kernel32 string function: > strcatW -> lstrcatW > strcmpW -> lstrcmpW > strcpyW -> lstrcpyW > strlenW -> lstrlenW > ... > etc > It may add a little

Re: Status : Multimedia section

2003-12-02 Thread Boaz Harrosh
Dear Robert I meant to drop you a note, ask what is the status. But you bit me to it. I have 7 years experience in writing DS filters. I am currently working on enhancing C++ on wine. I have ATL/WTL/MFC compiling and working under winelib. I have compiled COM controls generated by ATL VC++ wizard

Re: new old winetests

2003-12-02 Thread Dimitrie O. Paun
On December 2, 2003 05:48 am, Ferenc Wagner wrote: > "Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > > -- the mkdir() issue is still not 100% solved. We currently have: > > #ifndef _WIN32 > > # define mkdir(d) mkdir (d, 0777) > > #endif > > [...] Why don't we just link with msvcrt? > > "Di

Re: Question about simple profiling implementation

2003-12-02 Thread Shachar Shemesh
Dimitrie O. Paun wrote: On December 2, 2003 08:52 am, Andrew de Quincey wrote: As you say, relay debugging adds a huge overhead... however, would you say that this overhead would be fairly constant for each particular function? And herein lies the problem: we're adding a _big_ constant ove

Re: Question about simple profiling implementation

2003-12-02 Thread Dimitrie O. Paun
On December 2, 2003 08:52 am, Andrew de Quincey wrote: > As you say, relay debugging adds a huge overhead... however, would you say > that this overhead would be fairly constant for each particular function? And herein lies the problem: we're adding a _big_ constant overhead (O) to a variable cost

Re: Question about libwine_unicode functions and others in WINE

2003-12-02 Thread Dmitry Timoshkov
"Robert Shearman" <[EMAIL PROTECTED]> wrote: > However, couldn't we just replace the libwine_unicode function with an > appropriate (well-documented) kernel32 string function: > strcatW -> lstrcatW > strcmpW -> lstrcmpW > strcpyW -> lstrcpyW > strlenW -> lstrlenW > ... > etc No. The above APIs us

RE: Status : Multimedia section

2003-12-02 Thread Robert Shearman
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Behalf Of Tom > Sent: 02 December 2003 09:50 > To: Boaz Harrosh > Cc: Wine Development > Subject: Re: Status : Multimedia section > > > Boaz Harrosh wrote: > > What about the DirectShow and DMO side of things. Should

RE: Question about libwine_unicode functions and others in WINE

2003-12-02 Thread Robert Shearman
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Behalf Of Steven Edwards > Sent: 01 December 2003 00:03 > To: [EMAIL PROTECTED] > Subject: Question about libwine_unicode functions and others in WINE > > Hello, > We are looking at porting more code from WINE to Rea

Re: 64bit Wine?

2003-12-02 Thread Marcus Meissner
On Tue, Dec 02, 2003 at 08:02:37AM -0600, Jeremy White wrote: > >>I'm considering getting an Opteron. With this being a 64bit CPU I > >>wondered if there would be any issues with using WINE to make use of > >>win32 software on this 64bit CPU. > > > > > >There are no issues. > > > >SUSE LINUX 9.0

Re: WineX 3.2

2003-12-02 Thread Ivan Leo Murray-Smith
My free RPMs can't hurt Transgaming. For a start, on my winex page, I have a complete list of the features that only the commercial version has, and an invitation to subscribe to Transgaming if you want those extra features. As the freeware version doesn't include installshield, lots of games won't

wine in the press

2003-12-02 Thread Tom
http://www.osnews.com/story.php?news_id=5262 ill add it to the press page in a couple days ill look around for other articles as well. Tom

Re: 64bit Wine?

2003-12-02 Thread Jeremy White
I'm considering getting an Opteron. With this being a 64bit CPU I wondered if there would be any issues with using WINE to make use of win32 software on this 64bit CPU. There are no issues. SUSE LINUX 9.0 for AMD64 is capable of running all WINE products, including regular WINE, CrossOver Off

Re: Question about simple profiling implementation

2003-12-02 Thread Andrew de Quincey
On Tuesday 02 December 2003 04:13, Alexandre Julliard wrote: > Andrew de Quincey <[EMAIL PROTECTED]> writes: > > However, if no one minds, I think I'll still implement the stuff I was > > doing. I found being able to examine the call tree with ballpark figures > > of how long was spent in each call

Re: Status : Multimedia section

2003-12-02 Thread Tom
Boaz Harrosh wrote: What about the DirectShow and DMO side of things. Should they not be listed to complete the Multimedia picture? Hi, DirectShow = Quartz.dll And DirectShow is listed under the DirectX section of the status page as Quartz.dll is a part of DirectX. http://www.winehq.com/site/stat

Re: Question about simple profiling implementation

2003-12-02 Thread Andrew de Quincey
On Tuesday 02 December 2003 04:13, Alexandre Julliard wrote: > Andrew de Quincey <[EMAIL PROTECTED]> writes: > > However, if no one minds, I think I'll still implement the stuff I was > > doing. I found being able to examine the call tree with ballpark figures > > of how long was spent in each call

Re: new old winetests

2003-12-02 Thread Ferenc Wagner
"Dimitrie O. Paun" <[EMAIL PROTECTED]> writes: > -- the mkdir() issue is still not 100% solved. We currently have: > #ifndef _WIN32 > # define mkdir(d) mkdir (d, 0777) > #endif > [...] Why don't we just link with msvcrt? "Dimitrie O. Paun" <[EMAIL PROTECTED]> also wrote: > "Doctor, it hu

Re: Status : Multimedia section

2003-12-02 Thread Boaz Harrosh
What about the DirectShow and DMO side of things. Should they not be listed to complete the Multimedia picture? Mainly the filters in Quartz.dll and other basic filters that come with the OS. if you want me to, I can make a list of the Basic filters and Interfaces that are needed (and the dlls

Re: Wineinstall, Regedit seg faults

2003-12-02 Thread Fabian Cenedese
>I just tried to install wine (from cvs 2003-12-02) on a fresh install of >Knoppix (Debian). Configure/Compile went fine but I got an error with >regedit as already reported here: > >http://bugs.winehq.org/show_bug.cgi?id=1664 Just wanted to add that starting 'wine regedit' and then importing the

Wineinstall, Regedit seg faults

2003-12-02 Thread Fabian Cenedese
Hi I just tried to install wine (from cvs 2003-12-02) on a fresh install of Knoppix (Debian). Configure/Compile went fine but I got an error with regedit as already reported here: http://bugs.winehq.org/show_bug.cgi?id=1664 In my case: Compiling regedit... make: nothing to do for "all" Preparing

Re: Splitting out shared Win16/Win32 code

2003-12-02 Thread Casper Hornstrup
Great. I have a few more patches at http://212.242.245.122/patches/. Maybe you can review them? Casper > -Oprindelig meddelelse- > Fra: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] På vegne af Eric Pouech > Sendt: 30. november 2003 20:57 > Til: Casper Hornstrup > Cc: [EMAIL PROTECTED];

Status : Multimedia section

2003-12-02 Thread Tom
Hi, Here is the new layout of the Multimedia section of the "Status Dll's" page. May I ask what you guys here think of it?, constructive criticism? Tom Wine Status - DLLs   Aspect or Component Documentation status WWN article coverage Implementation sta

Re: 64bit Wine?

2003-12-02 Thread Marcus Meissner
On Mon, Dec 01, 2003 at 10:18:57PM +, J. Grant wrote: > Hello > > I'm considering getting an Opteron. With this being a 64bit CPU I > wondered if there would be any issues with using WINE to make use of > win32 software on this 64bit CPU. There are no issues. SUSE LINUX 9.0 for AMD64 is c

Re: debugger problems

2003-12-02 Thread Gregory M. Turner
On Monday 01 December 2003 12:31 am, Rein Klazes wrote: > On Sun, 30 Nov 2003 22:01:22 +0100, you wrote: > > Mike Hearn wrote: > > > On Sun, 2003-11-30 at 19:51, Rein Klazes wrote: > > >>Still the same here. It can be a bug in Debian Sid of course, and the > > >>with the flow of updates stopped ...

Re: new old winetests

2003-12-02 Thread Dimitrie O. Paun
On November 25, 2003 02:53 pm, Ferenc Wagner wrote: > State of affairs attached. I didn't use popen() because Wine > doesn't support it. OK, This looks a lot cleaner. Very, very nice! There are still a few nits, but I think it should go in so we can send small incremental patches. Here are the f