sysfile.inc 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Main OS dependant body of the system unit, loosely modelled
  4. after POSIX. *BSD version (Linux version is near identical)
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. procedure Do_Close(Handle:thandle);
  12. begin
  13. end;
  14. procedure Do_Erase(p: PAnsiChar; pchangeable: boolean);
  15. begin
  16. end;
  17. procedure do_truncate (handle:thandle;fpos:int64);
  18. begin
  19. end;
  20. procedure Do_Rename(p1,p2:PAnsiChar; p1changeable, p2changeable: boolean);
  21. begin
  22. end;
  23. function Do_Write(Handle:thandle;Addr:Pointer;Len:Longint):longint;
  24. begin
  25. end;
  26. function Do_Read(Handle:thandle;Addr:Pointer;Len:Longint):Longint;
  27. begin
  28. end;
  29. function Do_FilePos(Handle: thandle):Int64;
  30. begin
  31. end;
  32. procedure Do_Seek(Handle:thandle;Pos:Int64);
  33. begin
  34. end;
  35. function Do_Seekend(Handle:thandle):Int64;
  36. begin
  37. end;
  38. function Do_FileSize(Handle:thandle):Int64;
  39. begin
  40. end;
  41. procedure Do_Open(var f; p: PAnsiChar; flags: longint; pchangeable: boolean);
  42. Begin
  43. end;