(a) Fixed issues and description
  Driver exposes Privacy property.
(b) Known issue list.
  None.
(c) New Driver features
  None.
(d) Driver test result.
  WHCK for 8.1 passed.
(e) MD5
  Provided as .md5 file in the package.
(f) Silent install command.
  Install/Uninstall commands are provided in gl_install.bat and gl_uninstall.bat files.
  (1) For install, example command is:
      setup.exe /s /f2C:\camera.log
      "/s" is silent mode. "Setup.iss" is the default supported file for silent mode. "C:\camera.log" is the log file location.
  (2) For uninstall, example command is:
      setup.exe /s /f1uninstall.iss /f2C:\camera.log
      "/s" is silent mode. "uninstall.iss" is the supported file for silent mode. "C:\camera.log" is the log file location.
  The result code is then writen in "C:\camera.log", in the form such as "ResultCode=0". 
  Other return values are explained later.
  Note in Windows "RunAs Administrator" command line window, its actual working directory is C:\Windows; therefore in
  our .bat files the decoration "%dp0" is used to locate the local files. You can still specify the absolute path after
  f1 parameter to locate the .iss file, e.g., /f1"C:\folder\driverpackage\uninstall.iss".
  Or simply run "setup.exe /s /f1"%cd%\uninstall.iss" /f2"C:\camera.log" to silent uninstall.
(g) Support OS
  Win7, Win8, Win8.1, Win10
(h) Support Hardware device
  VID/PID = 05E3/0510
            05E3/F10F
            13D3/5744



Result Code Description:
0 Success. 
-1 General error. 
-2 Invalid mode. 
-3 Required data not found in the Setup.iss file. 
-4 Not enough memory available. 
-5 File does not exist. 
-6 Cannot write to the response file. 
-7 Unable to write to the log file. 
-8 Invalid path to the InstallShield Silent response (.iss) file. 
-9 Not a valid list type (string or number). 
-10 Data type is invalid. 
-11 Unknown error during setup. 
-12 Dialog boxes are out of order. 
-51 Cannot create the specified folder. 
-52 Cannot access the specified file or folder. 
-53 Invalid option selected. 
