mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 11:28:06 +02:00
* Fixed compile error in FileCreate
git-svn-id: trunk@17549 -
This commit is contained in:
parent
a201f07420
commit
9d580533d9
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user