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

  1. /*
  2.  * $Id: error.api,v 1.12 1999/09/15 14:03:36 vszel Exp $
  3.  */
  4.  
  5. /*
  6.  * Harbour Project source code:
  7.  * Compatibility header file for CA-Clipper Error API
  8.  *
  9.  * Copyright 1999 {list of individual authors and e-mail addresses}
  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. /* DON'T USE THIS FILE FOR NEW HARBOUR C CODE */
  37.  
  38. #ifndef HB_ERROR_API_
  39. #define HB_ERROR_API_
  40.  
  41. #include "clipdefs.h"
  42. #include "errorapi.h"
  43.  
  44. typedef PHB_ITEM  ERRORP;
  45.  
  46. #define _errGetDescription hb_errGetDescription
  47. #define _errGetFileName    hb_errGetFileName
  48. #define _errGetFlags       hb_errGetFlags
  49. #define _errGetGenCode     hb_errGetGenCode
  50. #define _errGetOperation   hb_errGetOperation
  51. #define _errGetOsCode      hb_errGetOsCode
  52. #define _errGetSeverity    hb_errGetSeverity
  53. #define _errGetSubCode     hb_errGetSubCode
  54. #define _errGetSubSystem   hb_errGetSubSystem
  55. #define _errGetTries       hb_errGetTries
  56. #define _errLaunch         hb_errLaunch
  57. #define _errNew            hb_errNew
  58. #define _errPutDescription hb_errPutDescription
  59. #define _errPutFileNaem    hb_errPutFileName
  60. #define _errPutFlags       hb_errPutFlags
  61. #define _errPutGenCode     hb_errPutGenCode
  62. #define _errPutOperation   hb_errPutOperation
  63. #define _errPutOsCode      hb_errPutOsCode
  64. #define _errPutSeverity    hb_errPutSeverity
  65. #define _errPutSubCode     hb_errPutSubCode
  66. #define _errPutSubSystem   hb_errPutSubSystem
  67. #define _errPutTries       hb_errPutTries
  68. #define _errRelease        hb_errRelease
  69.  
  70. #endif /* HB_ERROR_API_ */
  71.