See ChangeLog entry 19990617-00:00 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-06-17 05:06:42 +00:00
parent 76558fe6f7
commit 94cc5b7f59
4 changed files with 20 additions and 8 deletions

View File

@@ -1,3 +1,12 @@
19990617-00:00 EDT David G. Holm <dholm@jsd-llc.com>
* include/errorapi.h
- Added "#include <extend.h>"
* source/rtl/environ.c
- Added "#include <errorapi.h>
- Converted all _errFunctions to hb_errFunctions
* source/rtl/math.c
- Added missing _errFunction to hb_errFunction conversions
19990616-23:30 EDT David G. Holm <dholm@jsd-llc.com>
* makefile.icc
- Added or corrected various include file dependencies

View File

@@ -9,6 +9,7 @@
// compatible
//-
#include <extend.h>
#include "error.ch"

View File

@@ -2,6 +2,8 @@
* $Id$
*/
#include <errorapi.h>
#ifdef __IBMCPP__
#define INCL_DOSMISC
#endif
@@ -246,10 +248,10 @@ HARBOUR HB___RUN( void )
}
else
{
PHB_ITEM pError = _errNew();
_errPutDescription( pError, "RUN: Incorrect number of arguments" );
_errLaunch( pError );
_errRelease( pError );
PHB_ITEM pError = hb_errNew();
hb_errPutDescription( pError, "RUN: Incorrect number of arguments" );
hb_errLaunch( pError );
hb_errRelease( pError );
}
#endif
}

View File

@@ -278,10 +278,10 @@ FUNCTION MOD(cl_num, cl_base)
}
else
{
PHB_ITEM pError = _errNew();
_errPutDescription(pError, "Argument error: %");
_errLaunch(pError);
_errRelease(pError);
PHB_ITEM pError = hb_errNew();
hb_errPutDescription(pError, "Argument error: %");
hb_errLaunch(pError);
hb_errRelease(pError);
}
}