* fix sysdir.inc dummy for embedded targets

git-svn-id: trunk@18868 -
This commit is contained in:
florian 2011-08-27 22:43:53 +00:00
parent a683b7e9f1
commit 26a9bbbd13

View File

@ -19,20 +19,24 @@
{***************************************************************************** {*****************************************************************************
Directory Handling Directory Handling
*****************************************************************************} *****************************************************************************}
procedure mkdir(const s : string);[IOCheck]; procedure mkdir(s: pchar;len:sizeuint);[IOCheck];
begin begin
InOutRes:=3;
end; end;
procedure rmdir(const s : string);[IOCheck]; procedure rmdir(s: pchar;len:sizeuint);[IOCheck];
begin begin
InOutRes:=3;
end; end;
procedure chdir(const s : string);[IOCheck]; procedure chdir(s: pchar;len:sizeuint);[IOCheck];
begin begin
InOutRes:=3;
end; end;
procedure GetDir (DriveNr: byte; var Dir: ShortString); procedure GetDir (DriveNr: byte; var Dir: ShortString);
begin begin
InOutRes:=3;
end; end;