123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 1999-2000 by the Free Pascal development team
- File utility calls
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- Function FileOpen (Const FileName : string; Mode : Integer) : Longint;
- Begin
- //!! Needs implementing
- end;
- Function FileCreate (Const FileName : String) : Longint;
- begin
- //!! Needs implementing
- end;
- Function FileRead (Handle : Longint; Var Buffer; Count : longint) : Longint;
- begin
- //!! Needs implementing
- end;
- Function FileWrite (Handle : Longint; Var Buffer; Count : Longint) : Longint;
- begin
- //!! Needs implementing
- end;
- Function FileSeek (Handle,FOffset,Origin : Longint) : Longint;
- begin
- //!! Needs implementing
- end;
- Procedure FileClose (Handle : Longint);
- begin
- //!! Needs implementing
- end;
- Function FileTruncate (Handle,Size: Longint) : boolean;
- begin
- //!! Needs implementing
- end;
- Function FileAge (Const FileName : String): Longint;
- begin
- //!! Needs implementing
- end;
- Function FileExists (Const FileName : String) : Boolean;
- begin
- //!! Needs implementing
- end;
- Function FindFirst (Const Path : String; Attr : Longint; Var Rslt : TSearchRec) : Longint;
- begin
- //!! Needs implementing
- end;
- Function FindNext (Var Rslt : TSearchRec) : Longint;
- begin
- //!! Needs implementing
- end;
- Procedure FindClose (Var F : TSearchrec);
- begin
- //!! Needs implementing
- end;
- Function FileGetDate (Handle : Longint) : Longint;
- begin
- //!! Needs implementing
- end;
- Function FileSetDate (Handle,Age : Longint) : Longint;
- begin
- //!! Needs implementing
- end;
- Function FileGetAttr (Const FileName : String) : Longint;
- begin
- //!! Needs implementing
- end;
- Function FileSetAttr (Const Filename : String; Attr: longint) : Longint;
- begin
- //!! Needs implementing
- end;
- Function DeleteFile (Const FileName : String) : Boolean;
- begin
- //!! Needs implementing
- end;
- Function RenameFile (Const OldName, NewName : String) : Boolean;
- begin
- //!! Needs implementing
- end;
- Function FileSearch (Const Name, DirList : String) : String;
- begin
- //!! Needs implementing
- end;
- Procedure GetLocalTime(var SystemTime: TSystemTime);
- begin
- //!! Needs implementing
- end ;
- Procedure InitAnsi;
- begin
- //!! Needs implementing
- end;
- Procedure InitInternational;
- begin
- InitAnsi;
- end;
- {
- $Log$
- Revision 1.3 2002-09-07 16:01:26 peter
- * old logs removed and tabs fixed
- }
|