Browse Source

* dummy DirectoryExists added

Tomas Hajny 22 years ago
parent
commit
a8e68d18c5
4 changed files with 36 additions and 4 deletions
  1. 9 1
      rtl/beos/sysutils.pp
  2. 9 1
      rtl/netware/sysutils.pp
  3. 9 1
      rtl/posix/sysutils.pp
  4. 9 1
      rtl/template/sysutils.pp

+ 9 - 1
rtl/beos/sysutils.pp

@@ -184,6 +184,11 @@ begin
 end;
 
 
+function DirectoryExists (const Directory: string): boolean;
+begin
+end;
+
+
 {****************************************************************************
                               Misc Functions
 ****************************************************************************}
@@ -260,7 +265,10 @@ Finalization
 end.
 {
   $Log$
-  Revision 1.4  2003-01-08 21:56:54  marco
+  Revision 1.5  2003-03-29 15:16:26  hajny
+    * dummy DirectoryExists added
+
+  Revision 1.4  2003/01/08 21:56:54  marco
    * small fixes to prototypes to compile it
 
   Revision 1.3  2002/09/07 16:01:17  peter

+ 9 - 1
rtl/netware/sysutils.pp

@@ -407,6 +407,11 @@ begin
 end;
 
 
+function DirectoryExists (const Directory: string): boolean;
+begin
+end;
+
+
 {****************************************************************************
                               Misc Functions
 ****************************************************************************}
@@ -487,7 +492,10 @@ end.
 {
 
   $Log$
-  Revision 1.8  2003-02-15 19:12:54  armin
+  Revision 1.9  2003-03-29 15:16:26  hajny
+    * dummy DirectoryExists added
+
+  Revision 1.8  2003/02/15 19:12:54  armin
   * changes for new threadvar support
 
   Revision 1.7  2002/09/07 16:01:21  peter

+ 9 - 1
rtl/posix/sysutils.pp

@@ -454,6 +454,11 @@ begin
 end;
 
 
+function DirectoryExists (const Directory: string): boolean;
+begin
+end;
+
+
 {****************************************************************************
                               Misc Functions
 ****************************************************************************}
@@ -533,7 +538,10 @@ Finalization
 end.
 {
     $Log$
-    Revision 1.3  2002-09-07 16:01:26  peter
+    Revision 1.4  2003-03-29 15:16:26  hajny
+      * dummy DirectoryExists added
+
+    Revision 1.3  2002/09/07 16:01:26  peter
       * old logs removed and tabs fixed
 
     Revision 1.2  2002/08/10 13:42:36  marco

+ 9 - 1
rtl/template/sysutils.pp

@@ -181,6 +181,11 @@ begin
 end;
 
 
+function DirectoryExists (const Directory: string): boolean;
+begin
+end;
+
+
 {****************************************************************************
                               Misc Functions
 ****************************************************************************}
@@ -258,7 +263,10 @@ Finalization
 end.
 {
   $Log$
-  Revision 1.2  2002-09-07 16:01:27  peter
+  Revision 1.3  2003-03-29 15:16:26  hajny
+    * dummy DirectoryExists added
+
+  Revision 1.2  2002/09/07 16:01:27  peter
     * old logs removed and tabs fixed
 
 }