sysdir.inc 986 B

1234567891011121314151617181920212223242526272829303132333435
  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. {*****************************************************************************
  12. Directory Handling
  13. *****************************************************************************}
  14. procedure Do_MkDir(s: rawbytestring);
  15. begin
  16. end;
  17. procedure Do_RmDir(s: rawbytestring);
  18. begin
  19. end;
  20. procedure do_ChDir(s: rawbytestring);
  21. begin
  22. end;
  23. procedure do_getdir(drivenr : byte;var dir : rawbytestring);
  24. begin
  25. end;