mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 06:22:30 +02:00
added TMemoScrollBar
git-svn-id: trunk@3406 -
This commit is contained in:
parent
d6d67d7996
commit
c0601d90c6
@ -76,6 +76,8 @@ const
|
|||||||
// files
|
// files
|
||||||
function BackupFile(const Filename, BackupFilename: string): boolean;
|
function BackupFile(const Filename, BackupFilename: string): boolean;
|
||||||
function CompareFilenames(const Filename1, Filename2: string): integer;
|
function CompareFilenames(const Filename1, Filename2: string): integer;
|
||||||
|
function CompareFilenames(const Filename1, Filename2: string;
|
||||||
|
ResolveLinks: boolean): integer;
|
||||||
function FilenameIsMatching(const Mask, Filename: string;
|
function FilenameIsMatching(const Mask, Filename: string;
|
||||||
MatchExactly: boolean): boolean;
|
MatchExactly: boolean): boolean;
|
||||||
procedure SplitCmdLine(const CmdLine: string;
|
procedure SplitCmdLine(const CmdLine: string;
|
||||||
@ -263,7 +265,7 @@ end;
|
|||||||
|
|
||||||
function CompareFilenames(const Filename1, Filename2: string): integer;
|
function CompareFilenames(const Filename1, Filename2: string): integer;
|
||||||
begin
|
begin
|
||||||
Result:=FileProcs.CompareFilenames(FileName1,FileName2);
|
Result:=FileCtrl.CompareFilenames(FileName1,FileName2);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function FileIsExecutable(const AFilename: string): boolean;
|
function FileIsExecutable(const AFilename: string): boolean;
|
||||||
@ -361,6 +363,12 @@ begin
|
|||||||
Result:=FileProcs.ChompPathDelim(Path);
|
Result:=FileProcs.ChompPathDelim(Path);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function CompareFilenames(const Filename1, Filename2: string;
|
||||||
|
ResolveLinks: boolean): integer;
|
||||||
|
begin
|
||||||
|
Result:=FileCtrl.CompareFilenames(FileName1,FileName2,ResolveLinks);
|
||||||
|
end;
|
||||||
|
|
||||||
function FilenameIsMatching(const Mask, Filename: string;
|
function FilenameIsMatching(const Mask, Filename: string;
|
||||||
MatchExactly: boolean): boolean;
|
MatchExactly: boolean): boolean;
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user