sysdir.inc 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2006 by Free Pascal development team
  4. Low level directory functions
  5. Nintendo DS does not have any drive, so no directory handling is needed.
  6. Copyright (c) 2006 by Francesco Lombardi
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. {*****************************************************************************
  14. Directory Handling
  15. *****************************************************************************}
  16. procedure do_mkdir(const s: rawbytestring);
  17. begin
  18. end;
  19. procedure do_rmdir(const s: rawbytestring);
  20. begin
  21. end;
  22. procedure do_chdir(const s: rawbytestring);
  23. begin
  24. end;
  25. procedure do_GetDir(DriveNr: byte; var Dir: RawByteString);
  26. begin
  27. end;