removed Dependency on Windows Unit.
@albert, please take note
in the file UBaseTypes.pas, on line 305, I replaced the existing code {$IFDEF CPU64}GetTickCount64{$ELSE}windows.GetTickCount{$ENDIF}; with {$IFDEF CPU64}GetTickCount64{$ELSE}SysUtils.GetTickCount{$ENDIF}; since this removes the dependency on the windows unit thereby making it more crossplatform.