VerQueryValue function version

int VerQueryValue(
  1. Pointer<NativeType> pBlock,
  2. Pointer<Utf16> lpSubBlock,
  3. Pointer<Pointer<NativeType>> lplpBuffer,
  4. Pointer<Uint32> puLen
)

Retrieves specified version information from the specified version-information resource. To retrieve the appropriate resource, before you call VerQueryValue, you must first call the GetFileVersionInfoSize function, and then the GetFileVersionInfo function.

BOOL VerQueryValueW(
  LPCVOID pBlock,
  LPCWSTR lpSubBlock,
  LPVOID  *lplpBuffer,
  PUINT   puLen
);

Implementation

int VerQueryValue(Pointer pBlock, Pointer<Utf16> lpSubBlock,
        Pointer<Pointer> lplpBuffer, Pointer<Uint32> puLen) =>
    _VerQueryValue(pBlock, lpSubBlock, lplpBuffer, puLen);