mirror of
https://github.com/reactos/reactos.git
synced 2025-05-20 01:24:11 +00:00
no message
svn path=/trunk/; revision=1507
This commit is contained in:
parent
15491f14dd
commit
bf1b057da3
51 changed files with 320 additions and 197 deletions
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ArgumentParser.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ArgumentParser.cpp,v 1.4 2001/01/13 23:53:46 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ArgumentParser.h,v 1.2 2001/01/13 23:53:46 narnaoud Exp $ */
|
||||||
|
|
||||||
// ArgumentParser.h: interface for the CArgumentParser class.
|
// ArgumentParser.h: interface for the CArgumentParser class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: Completion.cpp,v 1.1 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: Completion.cpp,v 1.2 2001/01/13 23:54:07 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -240,10 +240,10 @@ BOOL CCompletionList::Add(const TCHAR *pszText, BOOL blnIsKey)
|
||||||
const TCHAR * CCompletionList::Get(unsigned __int64 nIndex, BOOL& rblnIsKey)
|
const TCHAR * CCompletionList::Get(unsigned __int64 nIndex, BOOL& rblnIsKey)
|
||||||
{
|
{
|
||||||
ASSERT(nIndex < m_nCount);
|
ASSERT(nIndex < m_nCount);
|
||||||
BOOL blnForward;
|
BOOL blnForward = FALSE;
|
||||||
CCompletionMatch *pNode = NULL;
|
CCompletionMatch *pNode = NULL;
|
||||||
|
|
||||||
unsigned __int64 nRelativeIndex;
|
unsigned __int64 nRelativeIndex = 0;
|
||||||
|
|
||||||
if (m_pLastSearched)
|
if (m_pLastSearched)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/* $Id: Completion.h,v 1.1 2001/01/10 01:25:29 narnaoud Exp $ */
|
/* $Id: Completion.h,v 1.2 2001/01/13 23:54:07 narnaoud Exp $ */
|
||||||
|
|
||||||
// Completion.h - declaration for completion related functions
|
// Completion.h - declaration for completion related functions
|
||||||
|
|
||||||
#if !defined(PATTERN_H__INCLUDED_)
|
#if !defined(COMLPETION_H__INCLUDED_)
|
||||||
#define PATTERN_H__INCLUDED_
|
#define COMPLETION_H__INCLUDED_
|
||||||
|
|
||||||
typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, const BOOL *pblnForward,
|
typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, const BOOL *pblnForward,
|
||||||
const TCHAR *pchContext, const TCHAR *pchBegin);
|
const TCHAR *pchContext, const TCHAR *pchBegin);
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: Console.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: Console.cpp,v 1.4 2001/01/13 23:54:07 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: Console.h,v 1.4 2001/01/13 23:54:07 narnaoud Exp $ */
|
||||||
|
|
||||||
// Console.h: interface for the CConsole class.
|
// Console.h: interface for the CConsole class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: Pattern.cpp,v 1.1 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: Pattern.cpp,v 1.2 2001/01/13 23:54:40 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -32,11 +32,15 @@ BOOL PatternMatch(const TCHAR *pszPattern, const TCHAR *pszTry)
|
||||||
{
|
{
|
||||||
if (((*pszTry) == 0) && ((*pszPattern) == 0))
|
if (((*pszTry) == 0) && ((*pszPattern) == 0))
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
if (((*pszTry) == 0) || ((*pszPattern) == 0))
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
pszTry++;
|
pszTry++;
|
||||||
pszPattern++;
|
pszPattern++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(*pszPattern == _T('*'))
|
if (*pszPattern == _T('*'))
|
||||||
{
|
{
|
||||||
pszPattern++;
|
pszPattern++;
|
||||||
while (*pszTry)
|
while (*pszTry)
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: RegistryExplorer.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: RegistryExplorer.cpp,v 1.4 2001/01/13 23:54:40 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
|
/* $Id: RegistryExplorer.h,v 1.5 2001/01/13 23:53:23 narnaoud Exp $ */
|
||||||
|
|
||||||
#ifndef _REGISTRY_EXPLORER_H__INCLUDED
|
#ifndef _REGISTRY_EXPLORER_H__INCLUDED
|
||||||
#define _REGISTRY_EXPLORER_H__INCLUDED
|
#define _REGISTRY_EXPLORER_H__INCLUDED
|
||||||
|
|
||||||
#define CURRENT_VERSION _T("0.20")
|
#define CURRENT_VERSION _T("0.20+")
|
||||||
#define EMAIL _T("registryexplorer@yahoo.com")
|
#define EMAIL _T("registryexplorer@yahoo.com")
|
||||||
|
|
||||||
//#define __L(x) L ## x
|
//#define __L(x) L ## x
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: RegistryKey.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: RegistryKey.cpp,v 1.4 2001/01/13 23:54:40 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: RegistryKey.h,v 1.4 2001/01/13 23:54:41 narnaoud Exp $ */
|
||||||
|
|
||||||
// RegistryKey.h: interface for the CRegistryKey class.
|
// RegistryKey.h: interface for the CRegistryKey class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: RegistryTree.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: RegistryTree.cpp,v 1.4 2001/01/13 23:54:41 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -287,21 +287,21 @@ BOOL CRegistryTree::DeleteSubkeys(CRegistryKey& rKey, const TCHAR *pszKeyPattern
|
||||||
BOOL blnKeyDeleted = FALSE;
|
BOOL blnKeyDeleted = FALSE;
|
||||||
while ((nError = rKey.GetNextSubkeyName()) == ERROR_SUCCESS)
|
while ((nError = rKey.GetNextSubkeyName()) == ERROR_SUCCESS)
|
||||||
{
|
{
|
||||||
if (blnRecursive)
|
|
||||||
{ // deltion is recursive, delete subkey subkeys
|
|
||||||
CRegistryKey Subkey;
|
|
||||||
// open subkey
|
|
||||||
nError = rKey.OpenSubkey(DELETE,pszSubkeyName,Subkey);
|
|
||||||
// delete subkey subkeys
|
|
||||||
if (DeleteSubkeys(Subkey, PATTERN_MATCH_ALL, TRUE))
|
|
||||||
{
|
|
||||||
AddErrorDescription(_T("Cannot delete subkey(s) of key %s. Subkey deletion failed.\n"),Subkey.GetKeyName());
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PatternMatch(pszKeyPattern,pszSubkeyName))
|
if (PatternMatch(pszKeyPattern,pszSubkeyName))
|
||||||
{
|
{
|
||||||
|
if (blnRecursive)
|
||||||
|
{ // deltion is recursive, delete subkey subkeys
|
||||||
|
CRegistryKey Subkey;
|
||||||
|
// open subkey
|
||||||
|
nError = rKey.OpenSubkey(DELETE,pszSubkeyName,Subkey);
|
||||||
|
// delete subkey subkeys
|
||||||
|
if (DeleteSubkeys(Subkey, PATTERN_MATCH_ALL, TRUE))
|
||||||
|
{
|
||||||
|
AddErrorDescription(_T("Cannot delete subkey(s) of key %s. Subkey deletion failed.\n"),Subkey.GetKeyName());
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
nError = rKey.DeleteSubkey(pszSubkeyName);
|
nError = rKey.DeleteSubkey(pszSubkeyName);
|
||||||
if (nError != ERROR_SUCCESS)
|
if (nError != ERROR_SUCCESS)
|
||||||
{
|
{
|
||||||
|
@ -311,6 +311,7 @@ BOOL CRegistryTree::DeleteSubkeys(CRegistryKey& rKey, const TCHAR *pszKeyPattern
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
blnKeyDeleted = TRUE;
|
blnKeyDeleted = TRUE;
|
||||||
|
rKey.InitSubkeyEnumeration(pszSubkeyName, dwMaxSubkeyNameLength); // reset iteration
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: SecurityDescriptor.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: SecurityDescriptor.cpp,v 1.4 2001/01/13 23:54:41 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: SecurityDescriptor.h,v 1.3 2001/01/13 23:54:41 narnaoud Exp $ */
|
||||||
|
|
||||||
// SecurityDescriptor.h: interface for the CSecurityDescriptor class.
|
// SecurityDescriptor.h: interface for the CSecurityDescriptor class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommand.cpp,v 1.2 2000/10/24 20:17:41 narnaoud Exp $
|
/* $Id: ShellCommand.cpp,v 1.3 2001/01/13 23:55:36 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommand.h,v 1.2 2001/01/13 23:55:36 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommand.h: interface for the CShellCommand class.
|
// ShellCommand.h: interface for the CShellCommand class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandChangeKey.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandChangeKey.cpp,v 1.4 2001/01/13 23:55:36 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandChangeKey.h,v 1.2 2001/01/13 23:55:36 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandChangeKey.h: interface for the CShellCommandChangeKey class.
|
// ShellCommandChangeKey.h: interface for the CShellCommandChangeKey class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandConnect.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandConnect.cpp,v 1.4 2001/01/13 23:55:36 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandConnect.h,v 1.2 2001/01/13 23:55:36 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandConnect.h: interface for the CShellCommandConnect class.
|
// ShellCommandConnect.h: interface for the CShellCommandConnect class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandDACL.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandDACL.cpp,v 1.4 2001/01/13 23:55:36 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandDACL.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandDACL.h: interface for the CShellCommandDACL class.
|
// ShellCommandDACL.h: interface for the CShellCommandDACL class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandDOKA.cpp,v 1.2 2000/10/24 20:17:41 narnaoud Exp $
|
/* $Id: ShellCommandDOKA.cpp,v 1.3 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandDOKA.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandDOKA.h: interface for the CShellCommandDOKA class.
|
// ShellCommandDOKA.h: interface for the CShellCommandDOKA class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandDeleteKey.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandDeleteKey.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -116,7 +116,10 @@ int CShellCommandDeleteKey::Execute(CConsole &rConsole, CArgumentParser& rArgume
|
||||||
ASSERT(pch >= pchKey);
|
ASSERT(pch >= pchKey);
|
||||||
|
|
||||||
const TCHAR *pszPath;
|
const TCHAR *pszPath;
|
||||||
TCHAR *pszPattern = pch+1;
|
TCHAR *pszPattern = pch;
|
||||||
|
if (*pch == _T('\\'))
|
||||||
|
pszPattern++;
|
||||||
|
|
||||||
if (pch == pchKey)
|
if (pch == pchKey)
|
||||||
{
|
{
|
||||||
pszPath = _T(".");
|
pszPath = _T(".");
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandDeleteKey.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandDeleteKey.h: interface for the CShellCommandDeleteKey class.
|
// ShellCommandDeleteKey.h: interface for the CShellCommandDeleteKey class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandDeleteValue.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandDeleteValue.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -27,6 +27,7 @@
|
||||||
#include "ph.h"
|
#include "ph.h"
|
||||||
#include "ShellCommandDeleteValue.h"
|
#include "ShellCommandDeleteValue.h"
|
||||||
#include "RegistryExplorer.h"
|
#include "RegistryExplorer.h"
|
||||||
|
#include "Pattern.h"
|
||||||
|
|
||||||
#define DV_CMD _T("DV")
|
#define DV_CMD _T("DV")
|
||||||
#define DV_CMD_LENGTH COMMAND_LENGTH(DV_CMD)
|
#define DV_CMD_LENGTH COMMAND_LENGTH(DV_CMD)
|
||||||
|
@ -51,119 +52,134 @@ BOOL CShellCommandDeleteValue::Match(const TCHAR *pszCommand)
|
||||||
|
|
||||||
int CShellCommandDeleteValue::Execute(CConsole &rConsole, CArgumentParser& rArguments)
|
int CShellCommandDeleteValue::Execute(CConsole &rConsole, CArgumentParser& rArguments)
|
||||||
{
|
{
|
||||||
rArguments.ResetArgumentIteration();
|
rArguments.ResetArgumentIteration();
|
||||||
TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
||||||
|
|
||||||
TCHAR *pszParameter;
|
TCHAR *pszParameter;
|
||||||
TCHAR *pszValueFull = NULL;
|
TCHAR *pszValueFull = NULL;
|
||||||
BOOL blnHelp = FALSE;
|
BOOL blnHelp = FALSE;
|
||||||
// DWORD dwError;
|
|
||||||
|
|
||||||
if ((_tcsnicmp(pszCommandItself,DV_CMD _T(".."),DV_CMD_LENGTH+2*sizeof(TCHAR)) == 0)||
|
if ((_tcsnicmp(pszCommandItself,DV_CMD _T(".."),DV_CMD_LENGTH+2*sizeof(TCHAR)) == 0)||
|
||||||
(_tcsnicmp(pszCommandItself,DV_CMD _T("\\"),DV_CMD_LENGTH+1*sizeof(TCHAR)) == 0))
|
(_tcsnicmp(pszCommandItself,DV_CMD _T("\\"),DV_CMD_LENGTH+1*sizeof(TCHAR)) == 0))
|
||||||
{
|
{
|
||||||
pszValueFull = pszCommandItself + DV_CMD_LENGTH;
|
pszValueFull = pszCommandItself + DV_CMD_LENGTH;
|
||||||
}
|
}
|
||||||
else if (_tcsnicmp(pszCommandItself,DV_CMD _T("/"),DV_CMD_LENGTH+1*sizeof(TCHAR)) == 0)
|
else if (_tcsnicmp(pszCommandItself,DV_CMD _T("/"),DV_CMD_LENGTH+1*sizeof(TCHAR)) == 0)
|
||||||
{
|
{
|
||||||
pszParameter = pszCommandItself + DV_CMD_LENGTH;
|
pszParameter = pszCommandItself + DV_CMD_LENGTH;
|
||||||
goto CheckValueArgument;
|
goto CheckValueArgument;
|
||||||
}
|
}
|
||||||
|
|
||||||
while((pszParameter = rArguments.GetNextArgument()) != NULL)
|
while((pszParameter = rArguments.GetNextArgument()) != NULL)
|
||||||
{
|
{
|
||||||
CheckValueArgument:
|
CheckValueArgument:
|
||||||
if ((_tcsicmp(pszParameter,_T("/?")) == 0)
|
if ((_tcsicmp(pszParameter,_T("/?")) == 0)
|
||||||
||(_tcsicmp(pszParameter,_T("-?")) == 0))
|
||(_tcsicmp(pszParameter,_T("-?")) == 0))
|
||||||
{
|
|
||||||
blnHelp = TRUE;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
else if (!pszValueFull)
|
|
||||||
{
|
|
||||||
pszValueFull = pszParameter;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
rConsole.Write(_T("Bad parameter: "));
|
|
||||||
rConsole.Write(pszParameter);
|
|
||||||
rConsole.Write(_T("\n"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
CRegistryKey Key;
|
|
||||||
TCHAR *pszValueName;
|
|
||||||
const TCHAR *pszPath;
|
|
||||||
|
|
||||||
if (blnHelp)
|
|
||||||
{
|
|
||||||
rConsole.Write(GetHelpString());
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pszValueFull)
|
|
||||||
{
|
|
||||||
if (_tcscmp(pszValueFull,_T("\\")) == 0)
|
|
||||||
goto CommandNAonRoot;
|
|
||||||
|
|
||||||
TCHAR *pchSep = _tcsrchr(pszValueFull,_T('\\'));
|
|
||||||
pszValueName = pchSep?(pchSep+1):(pszValueFull);
|
|
||||||
pszPath = pchSep?pszValueFull:_T(".");
|
|
||||||
|
|
||||||
//if (_tcsrchr(pszValueName,_T('.')))
|
|
||||||
//{
|
|
||||||
// pszValueName = _T("");
|
|
||||||
// pszPath = pszValueFull;
|
|
||||||
//}
|
|
||||||
//else
|
|
||||||
if (pchSep)
|
|
||||||
*pchSep = 0;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
pszValueName = _T("");
|
|
||||||
pszPath = _T(".");
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
size_t s = _tcslen(pszValueName);
|
|
||||||
if (s && (pszValueName[0] == _T('\"'))&&(pszValueName[s-1] == _T('\"')))
|
|
||||||
{
|
{
|
||||||
pszValueName[s-1] = 0;
|
blnHelp = TRUE;
|
||||||
pszValueName++;
|
break;
|
||||||
|
}
|
||||||
|
else if (!pszValueFull)
|
||||||
|
{
|
||||||
|
pszValueFull = pszParameter;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (!m_rTree.GetKey(pszPath,KEY_SET_VALUE,Key))
|
|
||||||
{
|
|
||||||
rConsole.Write(m_rTree.GetLastErrorDescription());
|
|
||||||
goto SkipCommand;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Key.IsRoot())
|
|
||||||
{ // not root key ???
|
|
||||||
LONG nError = Key.DeleteValue(pszValueName);
|
|
||||||
if (nError != ERROR_SUCCESS)
|
|
||||||
{
|
|
||||||
char Buffer[254];
|
|
||||||
_stprintf(Buffer,_T("Cannot delete value. Error is %u\n"),(unsigned int)nError);
|
|
||||||
rConsole.Write(Buffer);
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
InvalidateCompletion();
|
rConsole.Write(_T("Bad parameter: "));
|
||||||
|
rConsole.Write(pszParameter);
|
||||||
|
rConsole.Write(_T("\n"));
|
||||||
}
|
}
|
||||||
} // if (pKey)
|
}
|
||||||
else
|
|
||||||
{
|
CRegistryKey Key;
|
||||||
CommandNAonRoot:
|
TCHAR *pszValueNamePattern;
|
||||||
rConsole.Write(DV_CMD COMMAND_NA_ON_ROOT);
|
const TCHAR *pszPath;
|
||||||
}
|
|
||||||
|
if (blnHelp)
|
||||||
|
{
|
||||||
|
rConsole.Write(GetHelpString());
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
SkipCommand:
|
if (pszValueFull)
|
||||||
// if (pTree)
|
{
|
||||||
// delete pTree;
|
if (_tcscmp(pszValueFull,_T("\\")) == 0)
|
||||||
return 0;
|
goto CommandNAonRoot;
|
||||||
|
|
||||||
|
TCHAR *pchSep = _tcsrchr(pszValueFull,_T('\\'));
|
||||||
|
pszValueNamePattern = pchSep?(pchSep+1):(pszValueFull);
|
||||||
|
pszPath = pchSep?pszValueFull:_T(".");
|
||||||
|
|
||||||
|
if (pchSep)
|
||||||
|
*pchSep = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
pszValueNamePattern = _T("");
|
||||||
|
pszPath = _T(".");
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
size_t s = _tcslen(pszValueNamePattern);
|
||||||
|
if (s && (pszValueNamePattern[0] == _T('\"'))&&(pszValueNamePattern[s-1] == _T('\"')))
|
||||||
|
{
|
||||||
|
pszValueNamePattern[s-1] = 0;
|
||||||
|
pszValueNamePattern++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!m_rTree.GetKey(pszPath,KEY_QUERY_VALUE|KEY_SET_VALUE,Key))
|
||||||
|
{
|
||||||
|
rConsole.Write(m_rTree.GetLastErrorDescription());
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Key.IsRoot())
|
||||||
|
{ // not root key ???
|
||||||
|
TCHAR Buffer[254];
|
||||||
|
DWORD dwMaxValueNameLength;
|
||||||
|
LONG nError = Key.GetMaxValueNameLength(dwMaxValueNameLength);
|
||||||
|
if (nError != ERROR_SUCCESS)
|
||||||
|
{
|
||||||
|
_stprintf(Buffer,_T("Cannot query info about %s key. Error is %u\n"),Key.GetKeyName(),(unsigned int)nError);
|
||||||
|
rConsole.Write(Buffer);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
TCHAR *pszValueName = new TCHAR[dwMaxValueNameLength];
|
||||||
|
if (!pszValueName)
|
||||||
|
{
|
||||||
|
rConsole.Write("Out of memory.");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
Key.InitValueEnumeration(pszValueName,dwMaxValueNameLength,NULL,0,NULL);
|
||||||
|
|
||||||
|
while ((nError = Key.GetNextValue()) == ERROR_SUCCESS)
|
||||||
|
{
|
||||||
|
if (PatternMatch(pszValueNamePattern,pszValueName))
|
||||||
|
{
|
||||||
|
nError = Key.DeleteValue(pszValueName);
|
||||||
|
if (nError != ERROR_SUCCESS)
|
||||||
|
{
|
||||||
|
_stprintf(Buffer,_T("Cannot delete value. Error is %u\n"),(unsigned int)nError);
|
||||||
|
rConsole.Write(Buffer);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
InvalidateCompletion();
|
||||||
|
}
|
||||||
|
Key.InitValueEnumeration(pszValueName,dwMaxValueNameLength,NULL,0,NULL); // reset iteration
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} // if (pKey)
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CommandNAonRoot:
|
||||||
|
rConsole.Write(DV_CMD COMMAND_NA_ON_ROOT);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
const TCHAR * CShellCommandDeleteValue::GetHelpString()
|
const TCHAR * CShellCommandDeleteValue::GetHelpString()
|
||||||
|
@ -171,7 +187,7 @@ const TCHAR * CShellCommandDeleteValue::GetHelpString()
|
||||||
return DV_CMD_SHORT_DESC
|
return DV_CMD_SHORT_DESC
|
||||||
_T("Syntax: ") DV_CMD _T(" [<PATH>][<VALUE_NAME>] [/?]\n\n")
|
_T("Syntax: ") DV_CMD _T(" [<PATH>][<VALUE_NAME>] [/?]\n\n")
|
||||||
_T(" <PATH> - Optional relative path of key which value will be delete.\n")
|
_T(" <PATH> - Optional relative path of key which value will be delete.\n")
|
||||||
_T(" <VALUE_NAME> - Name of key's value. Default is key's default value.\n")
|
_T(" <VALUE_NAME> - Name pattern of key's value. Default is key's default value.\n")
|
||||||
_T(" /? - This help.\n\n");
|
_T(" /? - This help.\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandDeleteValue.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandDeleteValue.h: interface for the CShellCommandDeleteValue class.
|
// ShellCommandDeleteValue.h: interface for the CShellCommandDeleteValue class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandDir.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandDir.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -29,6 +29,7 @@
|
||||||
#include "ShellCommandDir.h"
|
#include "ShellCommandDir.h"
|
||||||
#include "RegistryTree.h"
|
#include "RegistryTree.h"
|
||||||
#include "RegistryKey.h"
|
#include "RegistryKey.h"
|
||||||
|
#include "Pattern.h"
|
||||||
|
|
||||||
// *** THIS SHOULD GO IN A MINGW/ROS HEADER (tchar.h ???) - Begin
|
// *** THIS SHOULD GO IN A MINGW/ROS HEADER (tchar.h ???) - Begin
|
||||||
#if 1 // #ifndef _ui64tot ???
|
#if 1 // #ifndef _ui64tot ???
|
||||||
|
@ -74,9 +75,9 @@ int CShellCommandDir::Execute(CConsole &rConsole, CArgumentParser& rArguments)
|
||||||
rArguments.ResetArgumentIteration();
|
rArguments.ResetArgumentIteration();
|
||||||
|
|
||||||
BOOL blnDo = TRUE,blnBadParameter, blnHelp = FALSE;
|
BOOL blnDo = TRUE,blnBadParameter, blnHelp = FALSE;
|
||||||
const TCHAR *pszParameter;
|
TCHAR *pszParameter;
|
||||||
const TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
||||||
const TCHAR *pszKey = NULL;
|
TCHAR *pszKey = NULL;
|
||||||
|
|
||||||
if ((_tcsnicmp(pszCommandItself,DIR_CMD _T(".."),DIR_CMD_LENGTH+2*sizeof(TCHAR)) == 0)||
|
if ((_tcsnicmp(pszCommandItself,DIR_CMD _T(".."),DIR_CMD_LENGTH+2*sizeof(TCHAR)) == 0)||
|
||||||
(_tcsnicmp(pszCommandItself,DIR_CMD _T("\\"),DIR_CMD_LENGTH+1*sizeof(TCHAR)) == 0))
|
(_tcsnicmp(pszCommandItself,DIR_CMD _T("\\"),DIR_CMD_LENGTH+1*sizeof(TCHAR)) == 0))
|
||||||
|
@ -116,9 +117,50 @@ CheckDirArgument:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const TCHAR *pszPattern = PATTERN_MATCH_ALL;
|
||||||
|
const TCHAR *pszPath = _T(".");
|
||||||
|
|
||||||
|
if (pszKey)
|
||||||
|
{
|
||||||
|
pszPath = pszKey;
|
||||||
|
|
||||||
|
TCHAR *pch = pszKey;
|
||||||
|
while(*pch) // search end of string
|
||||||
|
pch++;
|
||||||
|
|
||||||
|
if (pch > pszKey) // last non-null char
|
||||||
|
pch--;
|
||||||
|
|
||||||
|
if (*pch != _T('\\'))
|
||||||
|
{
|
||||||
|
while ((pch > pszKey) && (*pch != _T('\\')))
|
||||||
|
pch--;
|
||||||
|
|
||||||
|
if (*pch == _T('\\'))
|
||||||
|
{
|
||||||
|
pszPattern = pch+1;
|
||||||
|
|
||||||
|
if (pch > pszKey)
|
||||||
|
{
|
||||||
|
ASSERT(*pch == _T('\\'));
|
||||||
|
*pch = 0;
|
||||||
|
}
|
||||||
|
else if (*pch == _T('\\'))
|
||||||
|
{
|
||||||
|
pszPath = _T("\\");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
pszPattern = pszKey;
|
||||||
|
pszPath = _T(".");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
CRegistryKey Key;
|
CRegistryKey Key;
|
||||||
|
|
||||||
if (!m_rTree.GetKey(pszKey?pszKey:_T("."),KEY_ENUMERATE_SUB_KEYS|KEY_QUERY_VALUE,Key))
|
if (!m_rTree.GetKey(pszPath,KEY_ENUMERATE_SUB_KEYS|KEY_QUERY_VALUE,Key))
|
||||||
{
|
{
|
||||||
const TCHAR *pszErrorMsg = m_rTree.GetLastErrorDescription();
|
const TCHAR *pszErrorMsg = m_rTree.GetLastErrorDescription();
|
||||||
rConsole.Write(pszErrorMsg);
|
rConsole.Write(pszErrorMsg);
|
||||||
|
@ -165,10 +207,13 @@ CheckDirArgument:
|
||||||
Key.InitSubkeyEnumeration(pszSubkeyNameBuffer,dwMaxSubkeyNameLength);
|
Key.InitSubkeyEnumeration(pszSubkeyNameBuffer,dwMaxSubkeyNameLength);
|
||||||
while ((nError = Key.GetNextSubkeyName()) == ERROR_SUCCESS)
|
while ((nError = Key.GetNextSubkeyName()) == ERROR_SUCCESS)
|
||||||
{
|
{
|
||||||
rConsole.Write(_T("\t(KEY)\t\t\t\t"));
|
if (PatternMatch(pszPattern,pszSubkeyNameBuffer))
|
||||||
rConsole.Write(pszSubkeyNameBuffer);
|
{
|
||||||
rConsole.Write(_T("\\\n"));
|
rConsole.Write(_T("\t(KEY)\t\t\t\t"));
|
||||||
nTotalItems++;
|
rConsole.Write(pszSubkeyNameBuffer);
|
||||||
|
rConsole.Write(_T("\\\n"));
|
||||||
|
nTotalItems++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
delete pszSubkeyNameBuffer;
|
delete pszSubkeyNameBuffer;
|
||||||
|
@ -199,16 +244,19 @@ CheckDirArgument:
|
||||||
unsigned int nTabs;
|
unsigned int nTabs;
|
||||||
while((nError = Key.GetNextValue(&dwValueNameActualLength)) == ERROR_SUCCESS)
|
while((nError = Key.GetNextValue(&dwValueNameActualLength)) == ERROR_SUCCESS)
|
||||||
{
|
{
|
||||||
rConsole.Write(_T("\t"));
|
if (PatternMatch(pszPattern,pchValueNameBuffer))
|
||||||
pszValueTypeName = CRegistryKey::GetValueTypeName(Type);
|
{
|
||||||
nTabs = _tcslen(pszValueTypeName)/nTabSize;
|
|
||||||
nTabs = (nTabs < 4)?(4-nTabs):1;
|
|
||||||
rConsole.Write(pszValueTypeName);
|
|
||||||
while(nTabs--)
|
|
||||||
rConsole.Write(_T("\t"));
|
rConsole.Write(_T("\t"));
|
||||||
rConsole.Write((dwValueNameActualLength == 0)?_T("(Default)"):pchValueNameBuffer);
|
pszValueTypeName = CRegistryKey::GetValueTypeName(Type);
|
||||||
rConsole.Write(_T("\n"));
|
nTabs = _tcslen(pszValueTypeName)/nTabSize;
|
||||||
nTotalItems++;
|
nTabs = (nTabs < 4)?(4-nTabs):1;
|
||||||
|
rConsole.Write(pszValueTypeName);
|
||||||
|
while(nTabs--)
|
||||||
|
rConsole.Write(_T("\t"));
|
||||||
|
rConsole.Write((dwValueNameActualLength == 0)?_T("(Default)"):pchValueNameBuffer);
|
||||||
|
rConsole.Write(_T("\n"));
|
||||||
|
nTotalItems++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
delete pchValueNameBuffer;
|
delete pchValueNameBuffer;
|
||||||
|
@ -236,8 +284,9 @@ CheckDirArgument:
|
||||||
const TCHAR * CShellCommandDir::GetHelpString()
|
const TCHAR * CShellCommandDir::GetHelpString()
|
||||||
{
|
{
|
||||||
return DIR_CMD_SHORT_DESC
|
return DIR_CMD_SHORT_DESC
|
||||||
_T("Syntax: ") DIR_CMD _T(" [<KEY>] [/?]\n\n")
|
_T("Syntax: ") DIR_CMD _T(" [<PATH>\\][<PATTERN>] [/?]\n\n")
|
||||||
_T(" <KEY> - Optional relative path to the key on which command will be executed\n")
|
_T(" <PATH> - Optional relative path to the key on which command will be executed\n")
|
||||||
|
_T(" <PATTERN> - Optional pattern. Default is the all matching pattern.")
|
||||||
_T(" /? - This help.\n\n")
|
_T(" /? - This help.\n\n")
|
||||||
_T("Without parameters, command lists keys and values of current key.\n");
|
_T("Without parameters, command lists keys and values of current key.\n");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandDir.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandDir.h: interface for the CShellCommandDir class.
|
// ShellCommandDir.h: interface for the CShellCommandDir class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandExit.cpp,v 1.2 2000/10/24 20:17:41 narnaoud Exp $
|
/* $Id: ShellCommandExit.cpp,v 1.3 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandExit.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandExit.h: interface for the CShellCommandExit class.
|
// ShellCommandExit.h: interface for the CShellCommandExit class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandHelp.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandHelp.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandHelp.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandHelp.h: interface for the CShellCommandHelp class.
|
// ShellCommandHelp.h: interface for the CShellCommandHelp class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandNewKey.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandNewKey.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -116,7 +116,10 @@ int CShellCommandNewKey::Execute(CConsole &rConsole, CArgumentParser& rArguments
|
||||||
ASSERT(pch >= pszNewKey);
|
ASSERT(pch >= pszNewKey);
|
||||||
|
|
||||||
const TCHAR *pszPath;
|
const TCHAR *pszPath;
|
||||||
TCHAR *pszSubkeyName = pch+1;
|
TCHAR *pszSubkeyName = pch;
|
||||||
|
if (*pch == _T('\\'))
|
||||||
|
pszSubkeyName++;
|
||||||
|
|
||||||
if (pch == pszNewKey)
|
if (pch == pszNewKey)
|
||||||
{
|
{
|
||||||
pszPath = _T(".");
|
pszPath = _T(".");
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandNewKey.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandNewKey.h: interface for the CShellCommandNewKey class.
|
// ShellCommandNewKey.h: interface for the CShellCommandNewKey class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandOwner.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandOwner.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandOwner.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandOwner.h: interface for the CShellCommandOwner class.
|
// ShellCommandOwner.h: interface for the CShellCommandOwner class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandSACL.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandSACL.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandSACL.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandSACL.h: interface for the CShellCommandSACL class.
|
// ShellCommandSACL.h: interface for the CShellCommandSACL class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandSetValue.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandSetValue.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandSetValue.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandSetValue.h: interface for the CShellCommandSetValue class.
|
// ShellCommandSetValue.h: interface for the CShellCommandSetValue class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandValue.cpp,v 1.3 2001/01/10 01:25:29 narnaoud Exp $
|
/* $Id: ShellCommandValue.cpp,v 1.4 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandValue.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandValue.h: interface for the CShellCommandValue class.
|
// ShellCommandValue.h: interface for the CShellCommandValue class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandVersion.cpp,v 1.2 2000/10/24 20:17:42 narnaoud Exp $
|
/* $Id: ShellCommandVersion.cpp,v 1.3 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandVersion.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandVersion.h: interface for the CShellCommandVersion class.
|
// ShellCommandVersion.h: interface for the CShellCommandVersion class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: ShellCommandsLinkedList.cpp,v 1.2 2000/10/24 20:17:42 narnaoud Exp $
|
/* $Id: ShellCommandsLinkedList.cpp,v 1.3 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ShellCommandsLinkedList.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// ShellCommandsLinkedList.h: interface for the CShellCommandsLinkedList class.
|
// ShellCommandsLinkedList.h: interface for the CShellCommandsLinkedList class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/* $Id: TextHistory.cpp,v 1.2 2000/10/24 20:17:42 narnaoud Exp $
|
/* $Id: TextHistory.cpp,v 1.3 2001/01/13 23:55:37 narnaoud Exp $
|
||||||
*
|
*
|
||||||
* regexpl - Console Registry Explorer
|
* regexpl - Console Registry Explorer
|
||||||
*
|
*
|
||||||
* Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
|
* Copyright (C) 2000,2001 Nedko Arnaoudov <nedkohome@atia.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: TextHistory.h,v 1.2 2001/01/13 23:55:37 narnaoud Exp $ */
|
||||||
|
|
||||||
// TextHistory.h: interface for the CTextHistory class.
|
// TextHistory.h: interface for the CTextHistory class.
|
||||||
//
|
//
|
||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* $Id: ph.h,v 1.3 2001/01/13 23:54:40 narnaoud Exp $ */
|
||||||
|
|
||||||
// ph.h : include file for standard system include files,
|
// ph.h : include file for standard system include files,
|
||||||
// or project specific include files that are used frequently, but
|
// or project specific include files that are used frequently, but
|
||||||
// are changed infrequently
|
// are changed infrequently
|
||||||
|
|
Loading…
Reference in a new issue