v5.0.2
Use LPCVOID instead of 'const LPVOID' for VerQueryValue.

Apparently "const LPVOID" is different from "LPCVOID".  You can see
the difference for yourself by trying to compile this small bit of C
code:

  #include <windows.h>
  void x(const LPVOID);
  void y(LPCVOID);
  void test() {
    const char * data;
    x(data);
    y(data);
  }

Signed-off-by: Liu Hao <lh_mouse@126.com>
(cherry picked from commit 2de76d264f1aeda834cb6613fc054d3270410399)
Signed-off-by: Jonathan Yong <10walls@gmail.com>
1 file changed