sysdir.inc 961 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 mkdir(const s:string);[IOCHECK];
  15. begin
  16. end;
  17. procedure rmdir(const s:string);[IOCHECK];
  18. begin
  19. end;
  20. procedure chdir(const s:string);[IOCHECK];
  21. begin
  22. end;
  23. procedure GetDir (DriveNr: byte; var Dir: ShortString);
  24. begin
  25. end;