See ChangeLog entry 2001-06-14 13:15 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2001-06-14 17:21:20 +00:00
parent f8ea903321
commit 998ef2d1ae
3 changed files with 21 additions and 1 deletions

View File

@@ -1,3 +1,13 @@
2001-06-14 13:15 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* include/hbapierr.h
! Corrected reference to extend.ch for oError:Severity codes to refer
to the file that the severity codes are actually in: error.ch.
* source/rtl/math.c
* Added hb_getMathError() and hb_resetMathError() functions submitted
by Alejandro de Garate <alex_degarate@hotmail.com>.
2001-06-14 12:39 UTC-0800 Brian Hays <bhays@abacuslaw.com>
* source/rtl/philes.c
* changed comment re HB_FEOF TO HB_F_EOF

View File

@@ -75,7 +75,7 @@ extern "C" {
/* oError:Severity */
/* ... defined in extend.ch */
/* ... defined in error.ch */
/* oError:SubSystem (commonly used) */

View File

@@ -82,6 +82,16 @@
static int s_internal_math_error = 0; /* TOFIX: This is not thread safe. */
int hb_getMathError( void )
{
return( s_internal_math_error );
}
void hb_resetMathError( void )
{
s_internal_math_error = 0;
}
/* define harbour specific error handler for math errors
*/
int matherr( struct exception * err )