mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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)
|
||||
{
|
||||
ASSERT(nIndex < m_nCount);
|
||||
BOOL blnForward;
|
||||
BOOL blnForward = FALSE;
|
||||
CCompletionMatch *pNode = NULL;
|
||||
|
||||
unsigned __int64 nRelativeIndex;
|
||||
unsigned __int64 nRelativeIndex = 0;
|
||||
|
||||
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
|
||||
|
||||
#if !defined(PATTERN_H__INCLUDED_)
|
||||
#define PATTERN_H__INCLUDED_
|
||||
#if !defined(COMLPETION_H__INCLUDED_)
|
||||
#define COMPLETION_H__INCLUDED_
|
||||
|
||||
typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, const BOOL *pblnForward,
|
||||
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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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))
|
||||
return TRUE;
|
||||
|
||||
if (((*pszTry) == 0) || ((*pszPattern) == 0))
|
||||
return FALSE;
|
||||
|
||||
pszTry++;
|
||||
pszPattern++;
|
||||
}
|
||||
|
||||
if(*pszPattern == _T('*'))
|
||||
if (*pszPattern == _T('*'))
|
||||
{
|
||||
pszPattern++;
|
||||
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
|
||||
*
|
||||
* 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
|
||||
* 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
|
||||
#define _REGISTRY_EXPLORER_H__INCLUDED
|
||||
|
||||
#define CURRENT_VERSION _T("0.20")
|
||||
#define CURRENT_VERSION _T("0.20+")
|
||||
#define EMAIL _T("registryexplorer@yahoo.com")
|
||||
|
||||
//#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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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;
|
||||
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 (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);
|
||||
if (nError != ERROR_SUCCESS)
|
||||
{
|
||||
|
@ -311,6 +311,7 @@ BOOL CRegistryTree::DeleteSubkeys(CRegistryKey& rKey, const TCHAR *pszKeyPattern
|
|||
return FALSE;
|
||||
}
|
||||
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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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);
|
||||
|
||||
const TCHAR *pszPath;
|
||||
TCHAR *pszPattern = pch+1;
|
||||
TCHAR *pszPattern = pch;
|
||||
if (*pch == _T('\\'))
|
||||
pszPattern++;
|
||||
|
||||
if (pch == pchKey)
|
||||
{
|
||||
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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -27,6 +27,7 @@
|
|||
#include "ph.h"
|
||||
#include "ShellCommandDeleteValue.h"
|
||||
#include "RegistryExplorer.h"
|
||||
#include "Pattern.h"
|
||||
|
||||
#define DV_CMD _T("DV")
|
||||
#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)
|
||||
{
|
||||
rArguments.ResetArgumentIteration();
|
||||
TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
||||
rArguments.ResetArgumentIteration();
|
||||
TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
||||
|
||||
TCHAR *pszParameter;
|
||||
TCHAR *pszValueFull = NULL;
|
||||
BOOL blnHelp = FALSE;
|
||||
// DWORD dwError;
|
||||
TCHAR *pszParameter;
|
||||
TCHAR *pszValueFull = NULL;
|
||||
BOOL blnHelp = FALSE;
|
||||
|
||||
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))
|
||||
{
|
||||
pszValueFull = pszCommandItself + DV_CMD_LENGTH;
|
||||
}
|
||||
else if (_tcsnicmp(pszCommandItself,DV_CMD _T("/"),DV_CMD_LENGTH+1*sizeof(TCHAR)) == 0)
|
||||
{
|
||||
pszParameter = pszCommandItself + DV_CMD_LENGTH;
|
||||
goto CheckValueArgument;
|
||||
}
|
||||
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))
|
||||
{
|
||||
pszValueFull = pszCommandItself + DV_CMD_LENGTH;
|
||||
}
|
||||
else if (_tcsnicmp(pszCommandItself,DV_CMD _T("/"),DV_CMD_LENGTH+1*sizeof(TCHAR)) == 0)
|
||||
{
|
||||
pszParameter = pszCommandItself + DV_CMD_LENGTH;
|
||||
goto CheckValueArgument;
|
||||
}
|
||||
|
||||
while((pszParameter = rArguments.GetNextArgument()) != NULL)
|
||||
{
|
||||
while((pszParameter = rArguments.GetNextArgument()) != NULL)
|
||||
{
|
||||
CheckValueArgument:
|
||||
if ((_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('\"')))
|
||||
if ((_tcsicmp(pszParameter,_T("/?")) == 0)
|
||||
||(_tcsicmp(pszParameter,_T("-?")) == 0))
|
||||
{
|
||||
pszValueName[s-1] = 0;
|
||||
pszValueName++;
|
||||
blnHelp = TRUE;
|
||||
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
|
||||
{
|
||||
InvalidateCompletion();
|
||||
rConsole.Write(_T("Bad parameter: "));
|
||||
rConsole.Write(pszParameter);
|
||||
rConsole.Write(_T("\n"));
|
||||
}
|
||||
} // if (pKey)
|
||||
else
|
||||
{
|
||||
CommandNAonRoot:
|
||||
rConsole.Write(DV_CMD COMMAND_NA_ON_ROOT);
|
||||
}
|
||||
}
|
||||
|
||||
CRegistryKey Key;
|
||||
TCHAR *pszValueNamePattern;
|
||||
const TCHAR *pszPath;
|
||||
|
||||
if (blnHelp)
|
||||
{
|
||||
rConsole.Write(GetHelpString());
|
||||
return 0;
|
||||
}
|
||||
|
||||
SkipCommand:
|
||||
// if (pTree)
|
||||
// delete pTree;
|
||||
return 0;
|
||||
if (pszValueFull)
|
||||
{
|
||||
if (_tcscmp(pszValueFull,_T("\\")) == 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()
|
||||
|
@ -171,7 +187,7 @@ const TCHAR * CShellCommandDeleteValue::GetHelpString()
|
|||
return DV_CMD_SHORT_DESC
|
||||
_T("Syntax: ") DV_CMD _T(" [<PATH>][<VALUE_NAME>] [/?]\n\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");
|
||||
}
|
||||
|
||||
|
|
|
@ -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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -29,6 +29,7 @@
|
|||
#include "ShellCommandDir.h"
|
||||
#include "RegistryTree.h"
|
||||
#include "RegistryKey.h"
|
||||
#include "Pattern.h"
|
||||
|
||||
// *** THIS SHOULD GO IN A MINGW/ROS HEADER (tchar.h ???) - Begin
|
||||
#if 1 // #ifndef _ui64tot ???
|
||||
|
@ -74,9 +75,9 @@ int CShellCommandDir::Execute(CConsole &rConsole, CArgumentParser& rArguments)
|
|||
rArguments.ResetArgumentIteration();
|
||||
|
||||
BOOL blnDo = TRUE,blnBadParameter, blnHelp = FALSE;
|
||||
const TCHAR *pszParameter;
|
||||
const TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
||||
const TCHAR *pszKey = NULL;
|
||||
TCHAR *pszParameter;
|
||||
TCHAR *pszCommandItself = rArguments.GetNextArgument();
|
||||
TCHAR *pszKey = NULL;
|
||||
|
||||
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))
|
||||
|
@ -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;
|
||||
|
||||
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();
|
||||
rConsole.Write(pszErrorMsg);
|
||||
|
@ -165,10 +207,13 @@ CheckDirArgument:
|
|||
Key.InitSubkeyEnumeration(pszSubkeyNameBuffer,dwMaxSubkeyNameLength);
|
||||
while ((nError = Key.GetNextSubkeyName()) == ERROR_SUCCESS)
|
||||
{
|
||||
rConsole.Write(_T("\t(KEY)\t\t\t\t"));
|
||||
rConsole.Write(pszSubkeyNameBuffer);
|
||||
rConsole.Write(_T("\\\n"));
|
||||
nTotalItems++;
|
||||
if (PatternMatch(pszPattern,pszSubkeyNameBuffer))
|
||||
{
|
||||
rConsole.Write(_T("\t(KEY)\t\t\t\t"));
|
||||
rConsole.Write(pszSubkeyNameBuffer);
|
||||
rConsole.Write(_T("\\\n"));
|
||||
nTotalItems++;
|
||||
}
|
||||
}
|
||||
|
||||
delete pszSubkeyNameBuffer;
|
||||
|
@ -199,16 +244,19 @@ CheckDirArgument:
|
|||
unsigned int nTabs;
|
||||
while((nError = Key.GetNextValue(&dwValueNameActualLength)) == ERROR_SUCCESS)
|
||||
{
|
||||
rConsole.Write(_T("\t"));
|
||||
pszValueTypeName = CRegistryKey::GetValueTypeName(Type);
|
||||
nTabs = _tcslen(pszValueTypeName)/nTabSize;
|
||||
nTabs = (nTabs < 4)?(4-nTabs):1;
|
||||
rConsole.Write(pszValueTypeName);
|
||||
while(nTabs--)
|
||||
if (PatternMatch(pszPattern,pchValueNameBuffer))
|
||||
{
|
||||
rConsole.Write(_T("\t"));
|
||||
rConsole.Write((dwValueNameActualLength == 0)?_T("(Default)"):pchValueNameBuffer);
|
||||
rConsole.Write(_T("\n"));
|
||||
nTotalItems++;
|
||||
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((dwValueNameActualLength == 0)?_T("(Default)"):pchValueNameBuffer);
|
||||
rConsole.Write(_T("\n"));
|
||||
nTotalItems++;
|
||||
}
|
||||
}
|
||||
|
||||
delete pchValueNameBuffer;
|
||||
|
@ -236,8 +284,9 @@ CheckDirArgument:
|
|||
const TCHAR * CShellCommandDir::GetHelpString()
|
||||
{
|
||||
return DIR_CMD_SHORT_DESC
|
||||
_T("Syntax: ") DIR_CMD _T(" [<KEY>] [/?]\n\n")
|
||||
_T(" <KEY> - Optional relative path to the key on which command will be executed\n")
|
||||
_T("Syntax: ") DIR_CMD _T(" [<PATH>\\][<PATTERN>] [/?]\n\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("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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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);
|
||||
|
||||
const TCHAR *pszPath;
|
||||
TCHAR *pszSubkeyName = pch+1;
|
||||
TCHAR *pszSubkeyName = pch;
|
||||
if (*pch == _T('\\'))
|
||||
pszSubkeyName++;
|
||||
|
||||
if (pch == pszNewKey)
|
||||
{
|
||||
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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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
|
||||
*
|
||||
* 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
|
||||
* 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.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -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,
|
||||
// or project specific include files that are used frequently, but
|
||||
// are changed infrequently
|
||||
|
|
Loading…
Reference in a new issue