Re: Silly question, sloghtly off topic

2003-12-30 Thread Boaz Harrosh
in WinNT (and decedents) security is implemented in kernel. So I would suspect that advapi32.dll is Just an interface to the kernel. I think allot of information about this thing and other you can find in http://sysinternals.com , Have a look. Joshua Walker wrote: If you replace a win9x advapi

Re: Missing exports?

2003-12-30 Thread Dan Kegel
Joshua Walker wrote: So I'm still stumbling through advapi32 and there seems to be some functions that were not exported. ANy reason why? For example, AccessCheckByType was but AccessCheckByTypeAndAuditAlarm, AccessCheckByTypeResultList, AccessCheckByTypeResultListAndAuditAlarm, and AccessCheckBy

Missing exports?

2003-12-30 Thread Joshua Walker
So I'm still stumbling through advapi32 and there seems to be some functions that were not exported. ANy reason why? For example, AccessCheckByType was but AccessCheckByTypeAndAuditAlarm, AccessCheckByTypeResultList, AccessCheckByTypeResultListAndAuditAlarm, and AccessCheckByTypeResultListAndAud

Silly question, sloghtly off topic

2003-12-30 Thread Joshua Walker
If you replace a win9x advapi32.dll with a winNT advapi32.dll, do you gain the extra security features? I'm guessing no... -Joshua

Re: GetModuleFileName mysteries

2003-12-30 Thread Alexandre Julliard
"Ralf Juengling" <[EMAIL PROTECTED]> writes: > But what is the reason for having GetModuleFileName return the system > dir for "builtin DLLs"? Because we don't know the real path, and even if we did there is no guarantee that it is accessible from a Windows drive. > Also, why does it behave diff

PATCH - winebrowser

2003-12-30 Thread Chris Morgan
Has Rein's fix for mozilla and Ivan's additional browsers. Tried to clean the script up a little bit, could probably still use some work but I'm no script guru. Chris * tools/winebrowser, tools/wineinstall, tools/Makefile.in, winedefault.reg Chris Morgan <[EMAIL PROTECTED]> Add HKEY_LOCAL_MA

Re: Add support for some other MCI_ commands and implement mciSendCommandW

2003-12-30 Thread Alexandre Julliard
Dmitry Timoshkov <[EMAIL PROTECTED]> writes: > @@ -84,7 +84,16 @@ BOOL VFWAPIV MCIWndRegisterClass(HINSTAN > { > WNDCLASSW wc; > > -wc.style = CS_VREDRAW | CS_HREDRAW | CS_DBLCLKS | CS_OWNDC; > +/* Since we are going to register a class belonging to MSVFW32 > + * and later we w

Re: Allow regsvr32 to register multiple DLLs at once

2003-12-30 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > When you just get the urge to reregister your entire windows/system > directory... > > Mike Hearn <[EMAIL PROTECTED]> > Allow regsvr32 to register multiple DLLs even if some fail regsvr32 is a standard Windows program, we shouldn't invent new options that

Re: option to ignore primary selection

2003-12-30 Thread Alexandre Julliard
Ulrich Czekalla <[EMAIL PROTECTED]> writes: > Makes sense to me. I modified the patch to turn it on by default. IMO you should also invert the option (and rename it to something like "UsePrimary"). It's confusing to have to set an option to false to enable a feature. -- Alexandre Julliard [EMAI

Re: PATCH: dlls/winmm/wineoss/audio.c

2003-12-30 Thread Alexandre Julliard
Gerald Pfeifer <[EMAIL PROTECTED]> writes: > Tests by a FreeBSD user and discussions with one of the FreeBSD sound > maintainers confirmed that this is the right fix for that platform. > > I'm not sure whether you want to make this change in general, for all > platforms, so for now I have embedded

Re: Better fix for the GetTempFileName problem

2003-12-30 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > Index: files/file.c > === > RCS file: /home/wine/wine/files/file.c,v > retrieving revision 1.197 > diff -u -r1.197 file.c > --- files/file.c15 Dec 2003 20:15:20 - 1.197 > +++ f

Re: Simple arguments check

2003-12-30 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > Index: dlls/shell32/pidl.c > === > RCS file: /home/wine/wine/dlls/shell32/pidl.c,v > retrieving revision 1.94 > diff -u -r1.94 pidl.c > --- dlls/shell32/pidl.c 4 Nov 2003 04:21:01 - 1

Re: shell32

2003-12-30 Thread Alexandre Julliard
"Martin Fuchs" <[EMAIL PROTECTED]> writes: > Changelog: > separated out 16 bit functions from control.c into control16.c Actually these are not 16 bit functions, they are exported from shell32. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Re: Key exist query in registry

2003-12-30 Thread Dimitrie O. Paun
> Should I then post my patch on how to insert a new key? > And later we do the treeview refresh? Yes, please do so. -- Dimi.

Re: Key exist query in registry

2003-12-30 Thread Zimler Attila
Dimitrie O. Paun wrote: I call RefreshListView() but the key doesn't appear in the list. Should we do some insert to the listview? Or this could be a bug? Hold on, are you inserting a key or a value? Values appear in the listview, keys in the treeview. I'm trying to insert a key. Sorry for

Re: winemine2 winelib example

2003-12-30 Thread Ralf Juengling
On Tue, December 23 2003 08:51 am, Dimitrie O. Paun wrote: > On December 23, 2003 09:03 am, Vincent Béron wrote: > > Not really. The problem in that case is that winemaker thinks every > > resource file needs to be compiled independantly, when there's really > > only one to compile in that case (as

Re: Re: Key exist query in registry

2003-12-30 Thread Dimitrie O. Paun
> I call RefreshListView() but the key doesn't appear in > the list. Should we do some insert to the listview? Or > this could be a bug? Hold on, are you inserting a key or a value? Values appear in the listview, keys in the treeview. But I don't think there is a treeview refresh just yet, so it

Re: Key exist query in registry

2003-12-30 Thread Zimler Attila
Dimitrie O. Paun wrote: From: Zimler Attila <[EMAIL PROTECTED]> How can I insert the newly created hKey to the keytree? (Because without this the newly created key only appears after restarting regedit:) In programs/regedit/framewnd.c, in function _CmdWndProc(), just call RefreshLis

Re: Re: winemine2 winelib example

2003-12-30 Thread Dimitrie O. Paun
> This was the first time that I learned about the > existence and purpose of winegcc. I couldn't find any > information in the Winelib user's guide > nor is there a man page. Is winegcc quite new? Is more > information available somewhere? Mea culpa. winegcc is relatively new, but this is no e

Re: MCI #4: Add support for many MCIWNDM_ messages and some MCI_ commands

2003-12-30 Thread Dmitry Timoshkov
"Dimitrie O. Paun" <[EMAIL PROTECTED]> wrote: > An explicit list of MCI_ commands/MCIWNDM_ messages/MCIWNDF_ flags > would be much appreciated (if it's under 30ish items). This would > give a much better indication of the amount of work left to do. You are right, but it's too late today to put to

Re: MCI #4: Add support for many MCIWNDM_ messages and some MCI_ commands

2003-12-30 Thread Dimitrie O. Paun
On December 30, 2003 11:48 am, Dmitry Timoshkov wrote: > + * Add support for all remaining MCI_ commands and MCIWNDM_ messages. > + * Add support for all MCIWNDF_ flags. An explicit list of MCI_ commands/MCIWNDM_ messages/MCIWNDF_ flags would be much appreciated (if it's under 30ish items). This w

Re: default wine browser

2003-12-30 Thread Dan Kegel
Rein Klazes wrote: Under KDE it should be enough to do: kfmclient exec "${file}" Makes me nervous... the ability to cause code to execute is one of the most frequently abused powers of IE. Double clicking on an mp3 file to play it is not something that should make you nervous. ... (or do I miss yo

IE installer has moved

2003-12-30 Thread Mike Hearn
This is the new location: http://bylands.dur.ac.uk/~mh/wine-ie/ Happy drinking

Re: winecfg

2003-12-30 Thread Mike Hearn
Hey Robert, Feel free to come poke me on IRC if you have any questions. I'm TD in #winehq on freenode. I should be around a lot at the moment (happy holidays!) On Mon, 2003-12-29 at 21:48, Robert van Herk wrote: > Hi, > > Just to let you know: I started on the winecfg thingy officially now :-).

Hack for the '-pthread' at make depend

2003-12-30 Thread P. Christeas
On my configuration, the 'artsc-config' script outputs '-pthread' along with the '-Isth' entries. That broke the 'makedep' procedure. It's trivial. The following patch handles this. Index: makedep.c === RCS file: /home/wine/wine/tool

Re: default wine browser

2003-12-30 Thread Rein Klazes
On Mon, 29 Dec 2003 19:13:17 -0800, you wrote: > Rein Klazes wrote: > > Under KDE it should be enough to do: > > > > kfmclient exec "${file}" > > > > choosing in case of a html file the default browser configured for KDE. > > It works also for eg .mp3 files, but then the file spec must have been