소스 검색

* fix compilation of arm-embedded, resolves #36626

git-svn-id: trunk@44034 -
florian 5 년 전
부모
커밋
5aaf68b088
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      rtl/embedded/sysutils.pp

+ 3 - 3
rtl/embedded/sysutils.pp

@@ -53,13 +53,13 @@ begin
 end;
 
 
-function FileGetDate(Handle: THandle) : Int64;
+function FileGetDate(Handle: THandle) : TOSTimestamp;
 begin
   result := -1;
 end;
 
 
-function FileSetDate(Handle: THandle; Age: LongInt) : Longint;
+function FileSetDate(Handle: THandle; Age: TOSTimestamp) : Longint;
 begin
   result := -1;
 end;
@@ -129,7 +129,7 @@ begin
 end;
 
 
-Function FileAge (Const FileName : RawByteString): Int64;
+Function FileAge (Const FileName : RawByteString): TOSTimestamp;
 begin
   result := -1;
 end;