Home
last modified time | relevance | path

Searched refs:hNewKey (Results 1 – 5 of 5) sorted by relevance

/reactos/sdk/lib/cicero/
H A Dcicreg.cpp14 HKEY hNewKey; in _cicRegKey_Open() local
15 LSTATUS error = ::RegOpenKeyEx(hKey, lpSubKey, 0, samDesired, &hNewKey); in _cicRegKey_Open()
20 self.m_hKey = hNewKey; in _cicRegKey_Open()
27 HKEY hNewKey; in _cicRegKey_Create() local
29 KEY_ALL_ACCESS, NULL, &hNewKey, NULL); in _cicRegKey_Create()
34 self.m_hKey = hNewKey; in _cicRegKey_Create()
/reactos/base/applications/regedit/
H A Dtreeview.c499 HKEY hRoot, hNewKey, hKey; in OnTreeExpanding() local
525 hNewKey = hRoot; in OnTreeExpanding()
552 RegCloseKey(hNewKey); in OnTreeExpanding()
570 HKEY hRootKey = NULL, hKey = NULL, hNewKey = NULL; in CreateNewKey() local
591 if (hNewKey && dwDisposition == REG_OPENED_EXISTING_KEY) in CreateNewKey()
593 RegCloseKey(hNewKey); in CreateNewKey()
594 hNewKey = NULL; in CreateNewKey()
596 else if (!hNewKey) in CreateNewKey()
602 while(!hNewKey); in CreateNewKey()
617 if (hNewKey) in CreateNewKey()
[all …]
H A Dlistview.c663 HKEY hNewKey; in RefreshListView() local
679 errCode = RegOpenKeyExW(hKey, keyPath, 0, KEY_READ, &hNewKey); in RefreshListView()
683 errCode = RegQueryInfoKeyW(hNewKey, NULL, NULL, NULL, NULL, &max_sub_key_len, NULL, in RefreshListView()
698 …while (RegEnumValueW(hNewKey, dwIndex, ValName, &dwValNameLen, NULL, &dwValType, ValBuf, &dwValSiz… in RefreshListView()
716 RegCloseKey(hNewKey); in RefreshListView()
/reactos/modules/rosapps/applications/sysutils/regexpl/
H A DRegistryTree.cpp466 HKEY hNewKey = NULL; in InternalGetSubkey() local
469 nError = m_pCurrentKey->m_Key.OpenSubkey(DesiredAccess,pszSubkeyName,hNewKey); in InternalGetSubkey()
500 ASSERT(hNewKey); in InternalGetSubkey()
503 hr = rKey.Init(hNewKey,GetCurrentPath(),pszSubkeyNameCaseUpdated,DesiredAccess); in InternalGetSubkey()
519 hr = rKey.Init(hNewKey,GetCurrentPath(),pszSubkeyName,DesiredAccess); in InternalGetSubkey()
539 if (hNewKey) in InternalGetSubkey()
541 LONG nError = RegCloseKey(hNewKey); in InternalGetSubkey()
/reactos/drivers/ksfilter/ks/
H A Dswenum.c177 HANDLE hNewKey; in KspEnumerateBusRegistryKeys() local
190 Status = ZwOpenKey(&hNewKey, GENERIC_READ, &ObjectAttributes); in KspEnumerateBusRegistryKeys()
201 …Status = ZwQueryKey(hNewKey, KeyFullInformation, &KeyInformation, sizeof(KeyInformation), &ResultL… in KspEnumerateBusRegistryKeys()
206 ZwClose(hNewKey); in KspEnumerateBusRegistryKeys()
221 ZwClose(hNewKey); in KspEnumerateBusRegistryKeys()
232 …Status = ZwEnumerateKey(hNewKey, Index, KeyBasicInformation, (PVOID)KeyInfo, KeyInfoLength, &Resul… in KspEnumerateBusRegistryKeys()
238 … Status = Callback(hNewKey, BusDeviceExtension, DeviceEntry, KeyInfo->Name, ReferenceString); in KspEnumerateBusRegistryKeys()
250 ZwClose(hNewKey); in KspEnumerateBusRegistryKeys()