Home
last modified time | relevance | path

Searched refs:pszNewKey (Results 1 – 2 of 2) sorted by relevance

/reactos/modules/rosapps/applications/sysutils/regexpl/
H A DShellCommandNewKey.cpp52 TCHAR *pszNewKey = NULL, *pszArg; in Execute() local
72 if (pszNewKey) in Execute()
81 pszNewKey = pszArg; in Execute()
86 if (!pszNewKey) in Execute()
102 TCHAR *pch = pszNewKey; in Execute()
106 if (pch > pszNewKey) // last non-null char in Execute()
112 while((pch > pszNewKey)&&(*pch != _T('\\'))) in Execute()
115 ASSERT(pch >= pszNewKey); in Execute()
122 if (pch == pszNewKey) in Execute()
128 if (pch-1 == pszNewKey) in Execute()
[all …]
H A DRegistryTree.cpp126 const TCHAR *pszNewKey = _tcstok(pszBuffer,pszSeps); in ChangeCurrentKey() local
128 if ((!pszNewKey)&&((*pszRelativePath != _T('\\'))||(*(pszRelativePath+1) != 0))) in ChangeCurrentKey()
135 while (pszNewKey) in ChangeCurrentKey()
137 if (!InternalChangeCurrentKey(pszNewKey,KEY_READ)) in ChangeCurrentKey()
141 pszNewKey = _tcstok(NULL,pszSeps); in ChangeCurrentKey()