Re: Fix NtAccessCheck so it works with relative SECURITY_DESCRIPTORs

2005-05-30 Thread Robert Shearman
Evan Deaubl wrote: ChangeLog: * Fix NtAccessCheck so it works with relative SECURITY_DESCRIPTORs I cleaned up the patch a little. Does this still work for you? Changelog: Evan Deaubl <[EMAIL PROTECTED]> Robert Shearman <[EMAIL PROTECTED]> - Implement RtlGetControlSecurityDescriptor - Fix

Re: tab: Shift selected tab text up instead of down [RESEND]

2005-05-30 Thread Mike McCormack
+if (iItem == infoPtr->iSelected) +center_offset_v = ((drawRect->bottom - drawRect->top) - (rcText.bottom - rcText.top) - infoPtr->uVItemPadding) / 2; +else +center_offset_v = ((drawRect->bottom - drawRect->top) - (rcText.bottom - rcText.top) + infoPtr->

Re: ntdll.dll: mark dirlink as REPARSE_POINT (v2)

2005-05-30 Thread Dimi Paun
On Tue, 2005-05-31 at 06:21 +0200, Detlef Riekenberg wrote: > -if (S_ISDIR( st.st_mode ) && !show_dir_symlinks) return NULL; > +if (S_ISDIR( st.st_mode )) > + { > + if (!show_dir_symlinks) return NULL; > + name_is_link = FILE_ATTRIBUTE_REPARSE_POINT; > +

ntdll.dll: mark dirlink as REPARSE_POINT (v2)

2005-05-30 Thread Detlef Riekenberg
Changelog: Mark links to dir with "FILE_ATTRIBUTE_REPARSE_POINT", so modern Applications can use this additional Information. Supported by ntdll.dll since win2000. (Application as Example: totalcmd.exe >6.50) v2: Reformatted as suggested by Dimi Paun -- By By

Re: wine/dlls/x11drv keyboard.c

2005-05-30 Thread Dmitry Timoshkov
"Francois Gouget" <[EMAIL PROTECTED]> wrote: > > Fix Estonian keyboard layout to better match the X11 one. > > I have noticed that we get a steady trickle of these. Shouldn't it be > possible to get the definitions of all keyboards from the XFree sources > and find some way to automatically imp

generic.ppd isn't installed anymore

2005-05-30 Thread Vincent Béron
Hi, wineps/generic.ppd isn't installed anymore since a couple weeks ago (didn't had time yet to pinpoint exact patch). I think it's because only __install-lib__ and __install-dev__ is done in dlls/ now, and not __install__, which is the target actually installing wineps/generic.ppd. A quick'n dir

Re: [Fwd: Re: Extending File Dialog to include unix file paths]

2005-05-30 Thread Michael Lin
Hi Alexandre, I haven't got a reply from you on this issue yet. Please let me know what you think of the patch. Thanks, Michael Michael Lin wrote: Hi Alexandre, I have made the changes as you suggested to put all the entry point in one single library. Basically, I have created a new libra

Re: Borland C++ 4.5

2005-05-30 Thread Troy Rollo
On Tue, 31 May 2005 06:12, Andrew Neil Ramage wrote: > When I tried to install BC++ 4.5, the installation proceeded normally. > However, when I clicked "Finish", it trashed my X server, causing the > system to stop responding to key presses and the mouse. I could not > even kill the X server, and

Re: ntdll.dll: mark dirlink as REPARSE_POINT

2005-05-30 Thread Dimi Paun
On Tue, 2005-05-31 at 00:00 +0200, Detlef Riekenberg wrote: > -if (S_ISDIR( st.st_mode ) && !show_dir_symlinks) return NULL; > +if (S_ISDIR( st.st_mode )) > + { > + if (!show_dir_symlinks) > + { > + return NULL; > + }else > +

Borland C++ 4.5

2005-05-30 Thread Andrew Neil Ramage
When I tried to install BC++ 4.5, the installation proceeded normally. However, when I clicked "Finish", it trashed my X server, causing the system to stop responding to key presses and the mouse. I could not even kill the X server, and so had to pull the power cord out. Is this a known probl

Re: OLEAUT32 (resend) Floating point locale, no negative zero

2005-05-30 Thread Alex Villací­s Lasso
Alexandre Julliard wrote: Alex Villaci­s Lasso <[EMAIL PROTECTED]> writes: Changelog: * Force Single|Double conversion to BSTR to use the decimal separator defined by the current locale, because that is what native oleaut32 does, and to be consistent with later parsing of floating-point num

Re: wine/dlls/x11drv keyboard.c

2005-05-30 Thread Rein Klazes
On Mon, 30 May 2005 11:14:01 +0200 (CEST), you wrote: > The other trickle we're seeing is with timezones. So in a similar way > maybe we could get the data from the site below and import it all: > http://www.timeanddate.com/library/abbreviations/timezones/ That is a very limited number of timezo

Re: CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Andrew Neil Ramage
Works fine for me - I use the attached scripts. Andrew You can be the captain I will draw the chart Sailing into destiny Closer to the heart Closer to the Heart by Rush (A Farewell to Kings, 1977) ~ Pavel Troller wrote: Hello, have you done a cvs update -Pd

Hint for Wine + Type1 + FrameMaker / Update for the Font HOWTO

2005-05-30 Thread Dag Wieers
Hi Avi, Having spend endless hours looking for how to make Wine and Type1 fonts working together. I finally decided to convert my Type1 fonts to Truetype (after a hint by someone that Wine does not have Type1/Adobe support). Note: I'm not sure if this is true since there is a wine [afmdirs] sec

Re: UT2003 Regression - Patch at last :-))

2005-05-30 Thread Josef Drexler
On Thu, 26 May 2005 22:06:30 +0200, Alexandre Julliard wrote: > Alexandre Julliard <[EMAIL PROTECTED]> writes: > >> "Ann and Jason Edmeades" <[EMAIL PROTECTED]> writes: >> >> > What about instead of the send_ncpaind/send_erase when child==prev >> > (assuming >> > this to be the more 'unusual' c

Re[2]: tab: Shift selected tab text up instead of down

2005-05-30 Thread Vitaliy Margolen
Monday, May 30, 2005, 1:20:31 AM, you wrote: > On 5/29/05, Vitaliy Margolen <[EMAIL PROTECTED]> wrote: >> Sunday, May 29, 2005, 2:17:12, Vitaliy Margolen wrote: >> > Hi, >> >> > Changelog >> > * Shift selected tab text up instead of down. >> >- drawRect->>bottom += 3; >> >+ drawRec

Re: CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Michael Stefaniuc
Pavel Troller wrote: solution is to: cd dlls rm *.def cd .. make Ciao, Marcus Hi Marcus, yes, Your solution is the Right One! Thanks! However, I think that something is wrong with make distclean, because it should erase all the generated files including these .def's ? Or is there a rea

Re: CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Marcus Meissner
On Mon, May 30, 2005 at 03:23:13PM +0200, Pavel Troller wrote: > > solution is to: > > > > cd dlls > > rm *.def > > cd .. > > make > > > > Ciao, Marcus > > Hi Marcus, > yes, Your solution is the Right One! Thanks! > However, I think that something is wrong with make distclean, because it >

Re: CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Pavel Troller
> solution is to: > > cd dlls > rm *.def > cd .. > make > > Ciao, Marcus Hi Marcus, yes, Your solution is the Right One! Thanks! However, I think that something is wrong with make distclean, because it should erase all the generated files including these .def's ? Or is there a reason to kee

Re: CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Marcus Meissner
On Mon, May 30, 2005 at 02:40:20PM +0200, Michael Stefaniuc wrote: > Hello, > > have you done a cvs update -Pd ? No, solution is to: cd dlls rm *.def cd .. make Ciao, Marcus pgpjWr4xGk8eg.pgp Description: PGP signature

Re: CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Pavel Troller
> Hello, > > have you done a cvs update -Pd ? > Hello, of course, it's in my .cvsrc . cvs doesn't show any M'ed nor C'ed files, the update is clean. I also did a make clean in dlls, as suggested by Mike, but the problem is still there. Of course I know a standard procedure of ./configure ;

Re: CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Michael Stefaniuc
Hello, have you done a cvs update -Pd ? bye michael Pavel Troller wrote: For some time, about 10 - 14 days, I cannot compile wine from CVS anymore. The reason is as follows: make[3]: Entering directory `/usr/src/emul/wine/dlls/crypt32/tests' ../../../tools/winegcc/winegcc -B../../../

CryptUnprotectData undeclared - cannot compile

2005-05-30 Thread Pavel Troller
Hi! For some time, about 10 - 14 days, I cannot compile wine from CVS anymore. The reason is as follows: make[3]: Entering directory `/usr/src/emul/wine/dlls/crypt32/tests' ../../../tools/winegcc/winegcc -B../../../tools/winebuild -mconsole protectdata.o testlist.o -o crypt32_test.exe.so -L../.

Re: [DSOUND]multiple DIRECTSOUND object support

2005-05-30 Thread Alexandre Julliard
Robert Reif <[EMAIL PROTECTED]> writes: > Add multiple DIRECTSOUND object support (multiple sound cards can play > at the same time). > Fix CoCreateInstance when no sound card is present. > Fix create bug found by Mike Hearn. This is causing major trouble with make test for me: ../../../tools/ru

Re: wine/dlls/x11drv keyboard.c

2005-05-30 Thread Francois Gouget
On Sun, 29 May 2005, Alexandre Julliard wrote: [...] Log message: Dmitry Timoshkov <[EMAIL PROTECTED]> Fix Estonian keyboard layout to better match the X11 one. I have noticed that we get a steady trickle of these. Shouldn't it be possible to get the definitions of all keyboard

Re: Half Life 2 error -- err:mmio:MMIO_ParseExtA

2005-05-30 Thread Stefan Dösinger
Am Sonntag, 29. Mai 2005 20:10 schrieb J. Grant: > Hello, > > I am getting this error when trying to run Half Life2 in > err:mmio:MMIO_ParseExtA. Could someone tell me if this is a problem in > in WINE, or a problem in my setup? Or not an error at all..? > > Also if there is already a document on

CRYPTPROTECT_LOCAL_MACHINE in CryptProtectData

2005-05-30 Thread Michael Jung
Hi Kees, rsaenh uses your Crypt[Un]ProtectData functions for protecting the user's private keys, which are stored in the registry. For machine key pairs (which are keys that belong to the machine instead of a certain user), rsaenh needs support for the CRYPTPROTECT_LOCAL_MACHINE flag. On possib

Re: Flush serial port

2005-05-30 Thread Uwe Bonnes
> "Alexandre" == Alexandre Julliard <[EMAIL PROTECTED]> writes: Alexandre> Uwe Bonnes <[EMAIL PROTECTED]> writes: >> Changelog: wine/server/file.c: create_file() If we open a serial >> device, flush it Alexandre> This should be done in serial.c, but could you please explain

Re: Optionally map the unix filesystem instead of drive letters into the shell namespace

2005-05-30 Thread Michael Jung
On Monday 30 May 2005 02:12, you wrote: > Please explain on the per process basis. If you mean let winelib > application change the global flags via wine API, there will be > synchronization and threading issues. Say application A turn on unix path, > application B turn on unix path, application B

Re: tab: Shift selected tab text up instead of down

2005-05-30 Thread James Hawkins
On 5/29/05, Vitaliy Margolen <[EMAIL PROTECTED]> wrote: > Sunday, May 29, 2005, 2:17:12, Vitaliy Margolen wrote: > > Hi, > > > Changelog > > * Shift selected tab text up instead of down. > >- drawRect->>bottom += 3; > >+ drawRect->>bottom -= 3; > > This does not shift tab up. The