From 54a5e980efda60d1be4e0c0b23f2c0ceee60a25b Mon Sep 17 00:00:00 2001 From: nickysn Date: Sat, 16 Mar 2013 12:49:21 +0000 Subject: [PATCH] + added sysdir.inc for msdos, empty for now git-svn-id: branches/i8086@23860 - --- .gitattributes | 1 + rtl/msdos/sysdir.inc | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 rtl/msdos/sysdir.inc diff --git a/.gitattributes b/.gitattributes index ae15455037..f652d1dbf5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8202,6 +8202,7 @@ rtl/morphos/videodata.inc svneol=native#text/plain rtl/msdos/Makefile svneol=native#text/plain rtl/msdos/Makefile.fpc svneol=native#text/plain rtl/msdos/prt0.asm svneol=native#text/plain +rtl/msdos/sysdir.inc svneol=native#text/plain rtl/msdos/sysfile.inc svneol=native#text/plain rtl/msdos/sysheap.inc svneol=native#text/plain rtl/msdos/sysos.inc svneol=native#text/plain diff --git a/rtl/msdos/sysdir.inc b/rtl/msdos/sysdir.inc new file mode 100644 index 0000000000..68a0d708c7 --- /dev/null +++ b/rtl/msdos/sysdir.inc @@ -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 MkDir(s: pchar;len:sizeuint);[IOCheck, public, alias : 'FPC_SYS_MKDIR']; +begin +end; + +Procedure RmDir(s: pchar;len:sizeuint);[IOCheck, public, alias : 'FPC_SYS_RMDIR']; +begin +end; + +Procedure ChDir(s: pchar;len:sizeuint);[IOCheck, public, alias : 'FPC_SYS_CHDIR']; +begin +end; + +procedure GetDir (DriveNr: byte; var Dir: ShortString); +begin +end;