* Fixed compile error in FileCreate

git-svn-id: trunk@17549 -
This commit is contained in:
michael 2011-05-24 07:10:33 +00:00
parent a201f07420
commit 9d580533d9

View File

@ -235,12 +235,12 @@ end;
Function FileCreate (Const FileName : String) : THandle;
begin
FileCreate:=FileCreate(FileName, fmShareExclusive);
FileCreate:=FileCreate(FileName, fmShareExclusive, 0);
end;
Function FileCreate (Const FileName : String; Rights:longint) : THandle;
begin
FileCreate:=FileCreate(FileName, Mode, 0);
FileCreate:=FileCreate(FileName, fmShareExclusive, Rights);
end;
Function FileCreate (Const FileName : String; ShareMode : Integer; Rights : Integer) : THandle;