home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / harbb30g.zip / INCLUDE / filesys.api < prev    next >
Text File  |  1999-09-15  |  3KB  |  95 lines

  1. /*
  2.  * $Id: filesys.api,v 1.10 1999/09/15 14:03:36 vszel Exp $
  3.  */
  4.  
  5. /*
  6.  * Harbour Project source code:
  7.  * Compatibility header file for CA-Clipper Filesys API
  8.  *
  9.  * Copyright 1999 David G. Holm <dholm@jsd-llc.com>
  10.  * www - http://www.harbour-project.org
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version, with one exception:
  16.  *
  17.  * The exception is that if you link the Harbour Runtime Library (HRL)
  18.  * and/or the Harbour Virtual Machine (HVM) with other files to produce
  19.  * an executable, this does not by itself cause the resulting executable
  20.  * to be covered by the GNU General Public License. Your use of that
  21.  * executable is in no way restricted on account of linking the HRL
  22.  * and/or HVM code into it.
  23.  *
  24.  * This program is distributed in the hope that it will be useful,
  25.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  * GNU General Public License for more details.
  28.  *
  29.  * You should have received a copy of the GNU General Public License
  30.  * along with this program; if not, write to the Free Software
  31.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
  32.  * their web site at http://www.gnu.org/).
  33.  *
  34.  */
  35.  
  36. /*
  37.  * ChangeLog:
  38.  *
  39.  * V 1.6    Victor Szel                 #include <x> changed to #include "x".
  40.  * V 1.5    David G. Holm               Added my email address.
  41.  * V 1.4    David G. Holm               Added copyright and license header,
  42.  *                                      along with a complete version history.
  43.  * V 1.3    Victor Szel                 Undocumented change.
  44.  * V 1.2    David G. Holm               Corrected RCS Id keyword.
  45.  * V 1.1    David G. Holm               Committed to CVS.
  46.  * V 1.0    David G. Holm               Initial version.
  47.  *
  48.  */
  49.  
  50. /* DON'T USE THIS FILE FOR NEW HARBOUR C CODE */
  51.  
  52. #ifndef HB_FILESYS_API_
  53. #define HB_FILESYS_API_
  54.  
  55. #include "clipdefs.h"
  56. #include "filesys.h"
  57. #include "error.api"
  58.  
  59. /* Compatible types */
  60.  
  61. typedef FHANDLE fhandle;
  62. typedef FHANDLE * FHANDLEP;
  63.  
  64. /* DOS predefined standard handles */
  65.  
  66. #define STDIN           0
  67. #define STDOUT          1
  68. #define STDERR          2
  69. #define STDAUX          3
  70. #define STDPRN          4
  71.  
  72. /* Functions */
  73.  
  74. #define _fsChDir        hb_fsChDir
  75. #define _fsChDrv        hb_fsChDrv
  76. #define _fsClose        hb_fsClose
  77. #define _fsCommit       hb_fsCommit
  78. #define _fsCreate       hb_fsCreate
  79. #define _fsCurDir       hb_fsCurDir
  80. #define _fsCurDrv       hb_fsCurDrv
  81. #define _fsDelete       hb_fsDelete
  82. #define _fsError        hb_fsError
  83. #define _fsExtOpen      hb_fsExtOpen
  84. #define _fsIsDrv        hb_fsIsDrv
  85. #define _fsLock         hb_fsLock
  86. #define _fsMkDir        hb_fsMkDir
  87. #define _fsOpen         hb_fsOpen
  88. #define _fsRead         hb_fsRead
  89. #define _fsRmDir        hb_fsRmDir
  90. #define _fsRename       hb_fsRename
  91. #define _fsSeek         hb_fsSeek
  92. #define _fsWrite        hb_fsWrite
  93.  
  94. #endif /* HB_FILESYS_API_ */
  95.