Searched refs:valueLength (Results 1 – 3 of 3) sorted by relevance
/reactos/dll/shellext/ntobjshex/ |
H A D | ntobjenum.cpp | 98 … ReadRegistryValue(HKEY root, PCWSTR path, PCWSTR valueName, PVOID * valueData, PDWORD valueLength) in ReadRegistryValue() argument 117 res = RegQueryValueExW(hkey, valueName, NULL, NULL, NULL, valueLength); in ReadRegistryValue() 124 if (*valueLength > 0) in ReadRegistryValue() 126 PBYTE data = (PBYTE) CoTaskMemAlloc(*valueLength); in ReadRegistryValue() 129 res = RegQueryValueExW(hkey, valueName, NULL, NULL, data, valueLength); in ReadRegistryValue()
|
H A D | regfolder.cpp | 615 DWORD valueLength; in FormatContentsForDisplay() local 616 HRESULT hr = ReadRegistryValue(rootKey, ntPath, info->entryName, &valueData, &valueLength); in FormatContentsForDisplay() 627 if (valueLength > 0) in FormatContentsForDisplay() 629 hr = FormatValueData(info->contentType, valueData, valueLength, strContents); in FormatContentsForDisplay()
|
H A D | ntobjenum.h | 87 …ReadRegistryValue(HKEY root, PCWSTR path, PCWSTR valueName, PVOID * valueData, PDWORD valueLength);
|