8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

Rollback test for x64

This commit is contained in:
paul_reeves 2008-06-09 09:48:31 +00:00
parent 669ec152e3
commit bfaccac37c

View File

@ -387,12 +387,12 @@ end;
function GetRegistryEntry(RootKey: Integer; RegKey, RegEntry: string): String;
begin
Result := '';
//if not win64 and RootKey is HKLM64 then we are on a 32-bit box,
//so skip looking in registry
if ( (RootKey = HKLM64) AND (isWin32) ) then
//do nothing
Result := ''
else
// //if not win64 and RootKey is HKLM64 then we are on a 32-bit box,
// //so skip looking in registry
// if ( (RootKey = HKLM64) AND (isWin32) ) then7
// //do nothing
// Result := ''
// else
RegQueryStringValue(RootKey, RegKey, RegEntry, Result);
end;