sysdir.inc 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 for Nintendo Wii
  5. Copyright (c) 2011 by Francesco Lombardi
  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. {*****************************************************************************
  13. Directory Handling
  14. *****************************************************************************}
  15. procedure do_mkdir(const s: rawbytestring);
  16. begin
  17. end;
  18. procedure do_rmdir(const s: rawbytestring);
  19. begin
  20. end;
  21. procedure do_chdir(const s: rawbytestring);
  22. begin
  23. end;
  24. procedure do_GetDir(DriveNr: byte; var Dir: RawByteString);
  25. begin
  26. end;