static LSTATUS __cdecl RegistryKeyQueryValue()

in src/VSIXBootstrapper.Shared/RegistryKey.h [21:31]


    static LSTATUS __cdecl RegistryKeyQueryValue(
        _In_ HKEY hKey,
        _In_opt_ LPCWSTR lpValueName,
        _Reserved_ LPDWORD lpReserved,
        _Out_opt_ LPDWORD lpType,
        _Out_opt_ LPBYTE lpData,
        _Inout_opt_ LPDWORD lpcbData
    )
    {
        return ::RegQueryValueExW(hKey, lpValueName, lpReserved, lpType, lpData, lpcbData);
    }