Re: advapi32: Implement NtLoadKey

2005-03-25 Thread Mike McCormack
James Hawkins wrote: +/* mount a key directly under HKLM or HKU */ +static void mount_key(struct key *key, const WCHAR *subkey, obj_handle_t handle) +{ +if (!(f = fdopen(fd, r))) +return; + +/* create the key */ +newkey = create_key(key, subkey, NULL, KEY_DIRTY, 0,

Re: I think I know how uxtheme works...

2005-03-25 Thread Mike McCormack
Jonathan Wilson wrote: What I am doing here is clean-room reverse engineering. There's no reason that we need to expose ourselves to any legal risk at all. It may be your opinion that reading assembly code and describing it is legal and safe, but I don't agree and I'm sure others who work on

Re: [WINEALSA] multiple sound card support patch review needed

2005-03-25 Thread Ferenc Wagner
Paul van Schayck [EMAIL PROTECTED] writes: On Tue, 22 Mar 2005 09:52:13 -0500, Robert Reif [EMAIL PROTECTED] wrote: What happens when you have two or more identical cards. Should we also look for dmix in the device name? I think we should always look for hw:n I doubt it. First, ALSA have

Re: saving winrash

2005-03-25 Thread Ferenc Wagner
Ivan Leo Puoti [EMAIL PROTECTED] writes: Recently winetest is leaving a testdir directory behind it, so cleanup needs to be done better. This testdir comes from dlls/shell32/tests/shlfolder.c; RemoveDirectoryA in line 78 can fail somehow. Also, the return in line 147 doesn't do the necessary

Re: ipaddress: uniform naming

2005-03-25 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: I don't much like hungarian notation. I used to hate it. Not so much anymore, but that's besides the point. Back in the day when I introduced these names they seemed like a good idea. I was wrong, mea culpa. They are not particulary good (why

RE: I think I know how uxtheme works...

2005-03-25 Thread Casper Hornstrup
In copyright law it's the result that matter, not the process. To be protected by copyright law, it must be in tangible form. Looking at disassembled code is permitted by copyright law so it's only a problem if the person doing it lacks self-discipline and uses the disassembled code in a way that

Re: [WINEALSA] multiple sound card support patch review needed

2005-03-25 Thread Mike Hearn
On Fri, 25 Mar 2005 11:02:46 +0100, Ferenc Wagner wrote: I doubt it. First, ALSA have notion of the default device, which Wine should respect. Indeed, in fact I patched winealsa in the past to use the default device instead of talking to the plughw device directly precisely so it was

Re: winetest: code reorder

2005-03-25 Thread Dmitry Timoshkov
Ferenc Wagner [EMAIL PROTECTED] wrote: ChangeLog: Check desktop visibility after processing command line arguments. Why do you need it? There is no point to proceed if the tests can not run in an appropriate environment. -- Dmitry.

Re: Support for IDvdInfo2::GetDiscID

2005-03-25 Thread James Courtier-Dutton
Tim Hentenaar wrote: On Sat, 19 Jun 2004 14:42:27 +0100 James Courtier-Dutton [EMAIL PROTECTED] wrote: The Windows api method uses the function call IDvdInfo2::GetDiscID http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/directx9_c/directx/htm/idvdinfo2getdiscid.asp This returns a

Re: winetest: code reorder

2005-03-25 Thread Ferenc Wagner
Dmitry Timoshkov [EMAIL PROTECTED] writes: Ferenc Wagner [EMAIL PROTECTED] wrote: ChangeLog: Check desktop visibility after processing command line arguments. Why do you need it? There is no point to proceed if the tests can not run in an appropriate environment. The -s option

Re: advapi32: Implement NtLoadKey

2005-03-25 Thread James Hawkins
On Fri, 25 Mar 2005 17:08:25 +0900, Mike McCormack [EMAIL PROTECTED] wrote: James Hawkins wrote: +/* mount a key directly under HKLM or HKU */ +static void mount_key(struct key *key, const WCHAR *subkey, obj_handle_t handle) +{ +if (!(f = fdopen(fd, r))) +return;

redirecting text to standard out

2005-03-25 Thread Raphael Clifford
Hi, I am running a windows app under wine that prints text to the screen. This can be copied and pasted into wine's notepad. Is there any way to get wine to simply output all text written by the app to standard out? This would save me a lot of hassle :) I don't mind if it outputs far too much

Re: winetest: code reorder

2005-03-25 Thread Dmitry Timoshkov
Ferenc Wagner [EMAIL PROTECTED] wrote: The -s option (submit file, do not run tests) makes sense anyway. But my main reason is that it drove me mad by not obeying the -c option (no GUI) in some test runs. And I don't think it hurts or contradicts your aims. I'd prefer to deprecate running

Re: ipaddress: uniform naming (take 2)

2005-03-25 Thread Dimitrie O. Paun
On Fri, Mar 25, 2005 at 12:05:20PM +, Mike Hearn wrote: Blah, consistency with past mistakes rather than fixing them is how Win32 ended up being such a steaming pile in the first place. If you want to do a mass search/replace why not un-hungarianize the whole file? Because out of 24

Re: LOSTWAGES: updates

2005-03-25 Thread Dimitrie O. Paun
On Fri, Mar 25, 2005 at 09:48:48PM +0900, Mike McCormack wrote: + h2Remove HeapAlloc casts/h2 Please make this a h3, all entries there are at that level. -- Dimi.

Re: ipaddress: uniform naming

2005-03-25 Thread Alexandre Julliard
Dimitrie O. Paun [EMAIL PROTECTED] writes: I figured I might as well be consistent. The problem with LowerLimit is the capital at the beginning, I don't remember where I got the (bad) idea to name it like that. We don't use such naming anywhere, and I really think I did a mistake when I went

Re: winetest: code reorder

2005-03-25 Thread Ferenc Wagner
Dmitry Timoshkov [EMAIL PROTECTED] writes: Ferenc Wagner [EMAIL PROTECTED] wrote: The -s option (submit file, do not run tests) makes sense anyway. But my main reason is that it drove me mad by not obeying the -c option (no GUI) in some test runs. And I don't think it hurts or contradicts

Re: winetest: code reorder

2005-03-25 Thread Dmitry Timoshkov
Ferenc Wagner [EMAIL PROTECTED] wrote: The point is: the method of operation (GUI, console, quiet) should be taken into account already when displaying the error message about desktop visibility. It matters when you drive winetest from another program. I strongly believe that the intended

Re: updown: proper handling for GWL_STYLE

2005-03-25 Thread Robert Shearman
Dimitrie O. Paun wrote: ChangeLog Proper handling for GWL_STYLE. Minor cleanups. case WM_ENABLE: - if (dwStyle WS_DISABLED) UPDOWN_CancelMode (infoPtr); + if (infoPtr-dwStyle WS_DISABLED) UPDOWN_CancelMode (infoPtr); InvalidateRect (infoPtr-Self, NULL, FALSE); break;

Re: saving winrash

2005-03-25 Thread Robert Shearman
Chris Morgan wrote: I have already sent links to documents on MSDN that state how to make a service run on an interactive desktop. As some of the tests are a little distracting graphically, we should probably do the dialog as you suggest. I guess this is really up to the people running the test

Re: DirectDraw YUV overlays

2005-03-25 Thread Adam D. Moss
Lionel Ulmer wrote: I would suggest using the Xv extensions again if possible. Yes, and it will provide hardware-based scaling for free too... I wonder if GL exports any YUV-like texture formats on modern hardware. Not really. :( There's an apple-specific extension for it. On the other hand,

Re: redirecting text to standard out

2005-03-25 Thread Hans Leidekker
On Friday 25 March 2005 16:14, Raphael Clifford wrote: I am running a windows app under wine that prints text to the screen. This can be copied and pasted into wine's notepad. Is there any way to get wine to simply output all text written by the app to standard out? I remember I did

Hotel full again?

2005-03-25 Thread Andrew Bartlett
I tried to book a double room 28th April - 1st May (sharing with tridge), and it seems the hotel is all full again :-( There seems to be quite a contingent of Samba folk intending to come along (from a poll on the samba team list), and given the number of 'maybe' and 'probably' replies, I suspect

Re: redirecting text to standard out

2005-03-25 Thread wino
Thanks for that idea, I was able to capture some output from Dragon Nat. Speaking using that idea. trace:text:DrawTextExW LNew-Paragraph , -1, [(17,2)-(729,18)] 0824 trace:text:DrawTextExW Params: iTabLength=0, iLeftMargin=0, iRightMargin=0 trace:text:DrawTextExW Lthis text was dictated

Re: saving winrash

2005-03-25 Thread Jakob Eriksson
Robert Shearman wrote: Chris Morgan wrote: I have already sent links to documents on MSDN that state how to make a service run on an interactive desktop. As some of the tests are a little distracting graphically, we should probably do the dialog as you suggest. I guess this is really up to the

BitTorrent

2005-03-25 Thread Andrew Neil Ramage
I tried downloading the BitTorrent client from [url] and executin -- Andrew Someone set a bad example makes surrender seem alright; The act of a noble warrior who's lost the will to fight And now you're trembling on a rocky ledge Staring out into a heartless sea Facing life on a razor's edge

BitTorrent

2005-03-25 Thread Andrew Neil Ramage
Following up from the last message, when I tried to move beyond the stage described, I get the following: next Register dump: CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033 EIP:1e04e00f ESP:406ee804 EBP:406ee860 EFLAGS:00210246( - 00 -RIZP1) EAX: EBX:0002 ECX:

Re: BitTorrent

2005-03-25 Thread Scott Ritchie
FYI, There are native Linux bittorrent clients, including the one you're trying to use. On Sat, 2005-03-26 at 02:15 +, Andrew Neil Ramage wrote: Following up from the last message, when I tried to move beyond the stage described, I get the following: next Register dump: CS:0073