filutil.inc 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. File utility calls
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. Function FileOpen (Const FileName : string; Mode : Integer) : Longint;
  13. Begin
  14. //!! Needs implementing
  15. end;
  16. Function FileCreate (Const FileName : String) : Longint;
  17. begin
  18. //!! Needs implementing
  19. end;
  20. Function FileRead (Handle : Longint; Var Buffer; Count : longint) : Longint;
  21. begin
  22. //!! Needs implementing
  23. end;
  24. Function FileWrite (Handle : Longint; Var Buffer; Count : Longint) : Longint;
  25. begin
  26. //!! Needs implementing
  27. end;
  28. Function FileSeek (Handle,FOffset,Origin : Longint) : Longint;
  29. begin
  30. //!! Needs implementing
  31. end;
  32. Procedure FileClose (Handle : Longint);
  33. begin
  34. //!! Needs implementing
  35. end;
  36. Function FileTruncate (Handle,Size: Longint) : boolean;
  37. begin
  38. //!! Needs implementing
  39. end;
  40. Function FileAge (Const FileName : String): Longint;
  41. begin
  42. //!! Needs implementing
  43. end;
  44. Function FileExists (Const FileName : String) : Boolean;
  45. begin
  46. //!! Needs implementing
  47. end;
  48. Function FindFirst (Const Path : String; Attr : Longint; Var Rslt : TSearchRec) : Longint;
  49. begin
  50. //!! Needs implementing
  51. end;
  52. Function FindNext (Var Rslt : TSearchRec) : Longint;
  53. begin
  54. //!! Needs implementing
  55. end;
  56. Procedure FindClose (Var F : TSearchrec);
  57. begin
  58. //!! Needs implementing
  59. end;
  60. Function FileGetDate (Handle : Longint) : Longint;
  61. begin
  62. //!! Needs implementing
  63. end;
  64. Function FileSetDate (Handle,Age : Longint) : Longint;
  65. begin
  66. //!! Needs implementing
  67. end;
  68. Function FileGetAttr (Const FileName : String) : Longint;
  69. begin
  70. //!! Needs implementing
  71. end;
  72. Function FileSetAttr (Const Filename : String; Attr: longint) : Longint;
  73. begin
  74. //!! Needs implementing
  75. end;
  76. Function DeleteFile (Const FileName : String) : Boolean;
  77. begin
  78. //!! Needs implementing
  79. end;
  80. Function RenameFile (Const OldName, NewName : String) : Boolean;
  81. begin
  82. //!! Needs implementing
  83. end;
  84. Function FileSearch (Const Name, DirList : String) : String;
  85. begin
  86. //!! Needs implementing
  87. end;
  88. Procedure GetLocalTime(var SystemTime: TSystemTime);
  89. begin
  90. //!! Needs implementing
  91. end ;
  92. Procedure InitAnsi;
  93. begin
  94. //!! Needs implementing
  95. end;
  96. Procedure InitInternational;
  97. begin
  98. InitAnsi;
  99. end;
  100. {
  101. $Log$
  102. Revision 1.3 2002-09-07 16:01:26 peter
  103. * old logs removed and tabs fixed
  104. }