+ added dummy sysdir.inc to the ZX Spectrum RTL

git-svn-id: branches/z80@45032 -
This commit is contained in:
nickysn 2020-04-23 03:03:42 +00:00
parent f732b8413c
commit 02dbca9ae4
2 changed files with 36 additions and 0 deletions

1
.gitattributes vendored
View File

@ -12197,6 +12197,7 @@ rtl/zxspectrum/Makefile svneol=native#text/plain
rtl/zxspectrum/Makefile.fpc svneol=native#text/plain
rtl/zxspectrum/prt0.asm svneol=native#text/plain
rtl/zxspectrum/rtldefs.inc svneol=native#text/plain
rtl/zxspectrum/sysdir.inc svneol=native#text/plain
rtl/zxspectrum/sysfile.inc svneol=native#text/plain
rtl/zxspectrum/sysheap.inc svneol=native#text/plain
rtl/zxspectrum/sysos.inc svneol=native#text/plain

35
rtl/zxspectrum/sysdir.inc Normal file
View File

@ -0,0 +1,35 @@
{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2000 by Florian Klaempfl and Pavel Ozerski
member of the Free Pascal development team.
FPC Pascal system unit for the Win32 API.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{*****************************************************************************
Directory Handling
*****************************************************************************}
Procedure do_MkDir(const s: rawbytestring);
begin
end;
Procedure do_RmDir(const s: rawbytestring);
begin
end;
Procedure do_ChDir(const s: rawbytestring);
begin
end;
procedure do_GetDir (DriveNr: byte; var Dir: RawByteString);
begin
end;