Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-11 Thread Paul Vriens
On Tue, 2006-10-10 at 16:32 -0500, Brad DeMorrow wrote: Is Anyone currently working on this? If Not - I would like to start working on this part myself, it seems like it is fairly simple - but tedious work :-) Shouldn't be too much of a hassle and should help a little --Brad

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Brad DeMorrow
Is Anyone currently working on this? If Not - I would like to start working on this part myself, it seems like it is fairly simple - but tedious work :-) Shouldn't be too much of a hassle and should help a little --Brad DeMorrowOn 9/28/06, Frank Richter [EMAIL PROTECTED] wrote: On 28.09.2006

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Segin
Brad DeMorrow wrote: Is Anyone currently working on this? If Not - I would like to start working on this part myself, it seems like it is fairly simple - but tedious work :-) Shouldn't be too much of a hassle and should help a little --Brad DeMorrow On 9/28/06, Frank Richter

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread James Hawkins
On 10/10/06, Segin [EMAIL PROTECTED] wrote: Some Google searching provides that there may or may not be an implementation. http://www.reactos.org/pipermail/ros-svn/2005-August/005303.html ([ros-svn] [weiden] 17572: implemented RegDeleteTree() (untested!)) mentions this, and nothing more: ---

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Segin
James Hawkins wrote: On 10/10/06, Segin [EMAIL PROTECTED] wrote: Some Google searching provides that there may or may not be an implementation. http://www.reactos.org/pipermail/ros-svn/2005-August/005303.html ([ros-svn] [weiden] 17572: implemented RegDeleteTree() (untested!)) mentions

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Vitaliy Margolen
Segin wrote: James Hawkins wrote: On 10/10/06, Segin [EMAIL PROTECTED] wrote: Some Google searching provides that there may or may not be an implementation. http://www.reactos.org/pipermail/ros-svn/2005-August/005303.html ([ros-svn] [weiden] 17572: implemented RegDeleteTree() (untested!))

Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-09-28 Thread Paul Vriens
Hi, I was browsing some code and found that we have several places where we made our own implementation of a recursive delete of registry keys/value. Apparently there is an official one in Vista: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/regopenkeyex.asp I

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-09-28 Thread Frank Richter
On 28.09.2006 15:26, Paul Vriens wrote: I'll have a few hours tomorrow and will have a look. The cleanest solution for now seems to create RegDeleteTree[A|W] in advapi32 and use that wherever possible (unless we find that it forwards to shlwapi). Most DLL's already import advapi32. Hmm...