Home
last modified time | relevance | path

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

/reactos/dll/win32/shell32/
H A DCOpenWithMenu.cpp706 HKEY hKey, hSrcKey, hDestKey; in SetDefaultHandler() local
764 …if (RegCreateKeyExW(hKey, L"shell", 0, NULL, 0, KEY_WRITE, NULL, &hDestKey, NULL) != ERROR_SUCCESS) in SetDefaultHandler()
776 LSTATUS Result = SHCopyKeyW(hSrcKey, NULL, hDestKey, 0); in SetDefaultHandler()
786 RegSetString(hDestKey, NULL, wszBuf, REG_SZ); in SetDefaultHandler()
790 RegCloseKey(hDestKey); in SetDefaultHandler()
/reactos/base/applications/regedit/
H A Dedit.c1847 static LONG CopyKey(HKEY hDestKey, LPCWSTR lpDestSubKey, HKEY hSrcKey, LPCWSTR lpSrcSubKey) in CopyKey() argument
1870 …lResult = RegCreateKeyExW(hDestKey, lpDestSubKey, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_WRITE, NUL… in CopyKey()
1914 SHDeleteKey(hDestKey, lpDestSubKey); in CopyKey()
1918 static LONG MoveKey(HKEY hDestKey, LPCWSTR lpDestSubKey, HKEY hSrcKey, LPCWSTR lpSrcSubKey) in MoveKey() argument
1931 lResult = CopyKey(hDestKey, lpDestSubKey, hSrcKey, lpSrcSubKey); in MoveKey()