2006-03-21 13:40 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/vm/hvm.c
    ! added missing void in hb_xvmActionRequest() declaration to avoid
      BCC warnings
This commit is contained in:
Przemyslaw Czerpak
2006-03-21 12:46:33 +00:00
parent 7b9e174d65
commit baf6771099
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
* source/pp/ppcore.c
that in the future but in such case we will have to also update
hb_itemCopy() and hb_itemMove() so we can also update hb_itemSwap()
* harbour/source/vm/asort.c
* harbour/source/vm/classes.c
* harbour/source/vm/memvars.c
* harbour/source/vm/hvm.c
* cleaned the code which created HB_ITEMs on C stack. Only three

View File

@@ -214,7 +214,6 @@ static void hb_vmDoInitStatics( void ); /* executes all _INITSTATICS f
static void hb_vmDoInitFunctions( void ); /* executes all defined PRGs INIT functions */
static void hb_vmDoExitFunctions( void ); /* executes all defined PRGs EXIT functions */
static void hb_vmReleaseLocalSymbols( void ); /* releases the memory of the local symbols linked list */
static BOOL hb_xvmActionRequest(void) ;
extern void * hb_mthRequested( void ); /* profiler from classes.c */
extern void hb_mthAddTime( void *, ULONG ); /* profiler from classes.c */
@@ -5935,7 +5934,7 @@ ULONG hb_vmFlagEnabled( ULONG flags )
#define HB_XVM_RETURN return ( s_uiActionRequest ? hb_xvmActionRequest() : FALSE );
static BOOL hb_xvmActionRequest()
static BOOL hb_xvmActionRequest( void )
{
if( s_uiActionRequest & ( HB_ENDPROC_REQUESTED | HB_BREAK_REQUESTED ) )
return TRUE;