From 0a355cc722ec1e47335c160787dfe271cdc22d0c Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 21 Feb 2015 22:00:42 +1300 Subject: Support Windows 64 installer --- setup/windows/traccar.iss | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'setup/windows') diff --git a/setup/windows/traccar.iss b/setup/windows/traccar.iss index 0b37399d3..4d8ab7af5 100644 --- a/setup/windows/traccar.iss +++ b/setup/windows/traccar.iss @@ -32,9 +32,21 @@ Filename: "{app}\bin\InstallTraccar-NT.bat" Filename: "{app}\bin\UninstallTraccar-NT.bat" [Code] +function GetLocalMachine(): Integer; +begin + if IsWin64 then + begin + Result := HKLM64; + end + else + begin + Result := HKEY_LOCAL_MACHINE; + end; +end; + function InitializeSetup(): Boolean; begin - if RegKeyExists(HKEY_LOCAL_MACHINE, 'SOFTWARE\JavaSoft\Java Runtime Environment') then + if RegKeyExists(GetLocalMachine(), 'SOFTWARE\JavaSoft\Java Runtime Environment') then begin Result := true; end -- cgit v1.2.3