diskh.inc 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. Disk functions from Delphi's sysutils.pas
  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. Function DiskFree (Drive : Byte) : Longint;
  13. Function DiskSize (Drive : Byte) : Longint;
  14. Function GetCurrentDir : String;
  15. Function SetCurrentDir (Const NewDir : String) : Boolean;
  16. Function CreateDir (Const NewDir : String) : Boolean;
  17. Function RemoveDir (Const Dir : String) : Boolean;
  18. {
  19. $Log$
  20. Revision 1.3 2000-01-07 16:41:43 daniel
  21. * copyright 2000
  22. Revision 1.2 1999/11/06 14:41:30 peter
  23. * truncated log
  24. Revision 1.1 1998/10/11 13:41:32 michael
  25. + Added disk functions
  26. }