From 6293d45a2c3140d3d444aa14668f413a67c506ae Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 20 Aug 2008 17:09:04 +0000 Subject: [PATCH] 2008-08-20 19:07 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * source/debug/dbgentry.c ! HB_DBG_*() -> __DBG*(). ; I somehow completely missed this file from recent update, thanks Bill. --- harbour/ChangeLog | 6 ++++++ harbour/source/debug/dbgentry.c | 32 ++++++++++++++++---------------- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 32c43a185c..2961d4159f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-08-20 19:07 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * source/debug/dbgentry.c + ! HB_DBG_*() -> __DBG*(). + ; I somehow completely missed this file from recent + update, thanks Bill. + 2008-08-20 12:50 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * tests/longdev.prg * tests/hbpptest/hbpptest.prg diff --git a/harbour/source/debug/dbgentry.c b/harbour/source/debug/dbgentry.c index 541a6fa272..439717c134 100644 --- a/harbour/source/debug/dbgentry.c +++ b/harbour/source/debug/dbgentry.c @@ -1636,54 +1636,54 @@ hb_dbgVarSet( HB_VARINFO *scope, PHB_ITEM xNewValue ) /* * .prg functions */ -HB_FUNC( HB_DBG_SETENTRY ) +HB_FUNC( __DBGSETENTRY ) { hb_dbg_SetEntry( hb_dbgEntry ); } -HB_FUNC( HB_DBG_SETGO ) +HB_FUNC( __DBGSETGO ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgSetGo( ptr ); } -HB_FUNC( HB_DBG_SETTRACE ) +HB_FUNC( __DBGSETTRACE ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgSetTrace( ptr ); } -HB_FUNC( HB_DBG_SETCBTRACE ) +HB_FUNC( __DBGSETCBTRACE ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgSetCBTrace( ptr, hb_parl( 2 ) ); } -HB_FUNC( HB_DBG_SETNEXTROUTINE ) +HB_FUNC( __DBGSETNEXTROUTINE ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgSetNextRoutine( ptr ); } -HB_FUNC( HB_DBG_SETQUIT ) +HB_FUNC( __DBGSETQUIT ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgSetQuit( ptr ); } -HB_FUNC( HB_DBG_SETTOCURSOR ) +HB_FUNC( __DBGSETTOCURSOR ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgSetToCursor( ptr, hb_parc( 2 ), hb_parni( 3 ) ); } -HB_FUNC( HB_DBG_GETEXPRVALUE ) +HB_FUNC( __DBGGETEXPRVALUE ) { void * ptr = hb_parptr( 1 ); if( ptr ) @@ -1705,56 +1705,56 @@ HB_FUNC( HB_DBG_GETEXPRVALUE ) } } -HB_FUNC( HB_DBG_GETSOURCEFILES ) +HB_FUNC( __DBGGETSOURCEFILES ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_itemRelease( hb_itemReturn( hb_dbgGetSourceFiles( ptr ) ) ); } -HB_FUNC( HB_DBG_ISVALIDSTOPLINE ) +HB_FUNC( __DBGISVALIDSTOPLINE ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_retl( hb_dbgIsValidStopLine( ptr, hb_parc( 2 ), hb_parni( 3 ) ) ); } -HB_FUNC( HB_DBG_ADDBREAK ) +HB_FUNC( __DBGADDBREAK ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgAddBreak( ptr, hb_parc( 2 ), hb_parni( 3 ), NULL ); } -HB_FUNC( HB_DBG_DELBREAK ) +HB_FUNC( __DBGDELBREAK ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgDelBreak( ptr, hb_parni( 2 ) ); } -HB_FUNC( HB_DBG_ADDWATCH ) +HB_FUNC( __DBGADDWATCH ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgAddWatch( ptr, hb_parc( 2 ), hb_parl( 3 ) ); } -HB_FUNC( HB_DBG_DELWATCH ) +HB_FUNC( __DBGDELWATCH ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgDelWatch( ptr, hb_parni( 2 ) ); } -HB_FUNC( HB_DBG_SETWATCH ) +HB_FUNC( __DBGSETWATCH ) { void * ptr = hb_parptr( 1 ); if( ptr ) hb_dbgSetWatch( ptr, hb_parni( 2 ), hb_parc( 3 ), hb_parl( 4 ) ); } -HB_FUNC( HB_DBG_SENDMSG ) +HB_FUNC( __DBGSENDMSG ) { hb_dbgObjSendMessage( hb_parnl( 1 ), hb_param( 2, HB_IT_ANY ), hb_param( 3, HB_IT_ANY ), 4 );