sysdir.inc 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 1999-2000 by Florian Klaempfl and Pavel Ozerski
  4. member of the Free Pascal development team.
  5. FPC Pascal system unit for the Win32 API.
  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);inline;
  16. begin
  17. end;
  18. Procedure do_RmDir(const s: rawbytestring);inline;
  19. begin
  20. end;
  21. Procedure do_ChDir(const s: rawbytestring);inline;
  22. begin
  23. end;
  24. procedure do_GetDir (DriveNr: byte; var Dir: RawByteString);inline;
  25. begin
  26. end;