sysdir.inc 966 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2007 by contributors of the Free Pascal Compiler
  4. Directory functions
  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(const s:rawbytestring);
  15. begin
  16. end;
  17. procedure do_rmdir(const s:rawbytestring);
  18. begin
  19. end;
  20. procedure do_chdir(const s:rawbytestring);
  21. begin
  22. end;
  23. procedure do_GetDir (DriveNr: byte; var Dir: RawByteString);
  24. begin
  25. end;