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
5    Directory functions
6
7    See the file COPYING.FPC, included in this distribution,
8    for details about the copyright.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13
14 **********************************************************************}
15
16{*****************************************************************************
17                           Directory Handling
18*****************************************************************************}
19
20procedure do_mkdir(const s:rawbytestring);
21begin
22
23end;
24
25procedure do_rmdir(const s:rawbytestring);
26begin
27
28end;
29
30procedure do_chdir(const s:rawbytestring);
31begin
32
33end;
34
35procedure do_GetDir (DriveNr: byte; var Dir: RawByteString);
36begin
37
38end;
39