2
0

disk.inc 1011 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. begin
  14. end;
  15. Function DiskSize (Drive : Byte) : Longint;
  16. begin
  17. end;
  18. Function GetCurrentDir : String;
  19. begin
  20. end;
  21. Function SetCurrentDir (Const NewDir : String) : Boolean;
  22. begin
  23. end;
  24. Function CreateDir (Const NewDir : String) : Boolean;
  25. begin
  26. end;
  27. Function RemoveDir (Const Dir : String) : Boolean;
  28. begin
  29. end;
  30. {
  31. $Log$
  32. Revision 1.3 2002-09-07 16:01:26 peter
  33. * old logs removed and tabs fixed
  34. }