*** empty log message ***

This commit is contained in:
Viktor Szakats
1999-06-25 02:02:51 +00:00
parent 5d1f5d6f66
commit 4a4abbfc35
3 changed files with 9 additions and 5 deletions

View File

@@ -25,6 +25,7 @@
minor fixes.
* include/set.h
source/rtl/set.c
source/vm/hvm.c
InitializeSets() -> hb_setInitialize()
ReleaseSets() -> hb_setRelease()
* types.h -> hbdefs.h

View File

@@ -257,6 +257,7 @@ PHB_ITEM hb_errPutFlags( PHB_ITEM pError, USHORT uiFlags )
WORD hb_errorRT_BASE( ULONG ulGenCode, ULONG ulSubCode, char* szDescription, char* szOperation )
{
PHB_ITEM pError = hb_errNew();
WORD wRetVal;
hb_errPutSeverity( pError, ES_ERROR );
hb_errPutSubSystem( pError, HB_ERR_SS_BASE );
@@ -264,8 +265,11 @@ WORD hb_errorRT_BASE( ULONG ulGenCode, ULONG ulSubCode, char* szDescription, cha
hb_errPutSubCode( pError, ulSubCode );
hb_errPutDescription( pError, szDescription );
hb_errPutOperation( pError, szOperation );
hb_errLaunch( pError );
return hb_errRelease( pError );
wRetVal = hb_errLaunch( pError );
hb_errRelease( pError );
return wRetVal;
}

View File

@@ -113,7 +113,6 @@ void LogSymbols( void ); /* displays all dynamic symbols */
void ReleaseClasses( void ); /* releases all defined classes */
void ReleaseLocalSymbols( void ); /* releases the memory of the local symbols linked list */
void ReleaseDynamicSymbols( void ); /* releases the memory of the dynamic symbol table */
void ReleaseSets( void ); /* releases Sets consumed memory */
/* stack management functions */
void StackPop( void ); /* pops an item from the stack */
@@ -197,7 +196,7 @@ BYTE bErrorLevel = 0; /* application exit errorlevel */
stack.Return.wType = IT_NIL;
StackInit();
NewDynSym( &symEval ); /* initialize dynamic symbol for evaluating codeblocks */
InitializeSets(); /* initialize Sets */
hb_setInitialize(); /* initialize Sets */
InitializeConsole(); /* initialize Console */
#ifdef HARBOUR_OBJ_GENERATION
ProcessObjSymbols(); /* initialize Harbour generated OBJs symbols */
@@ -238,7 +237,7 @@ BYTE bErrorLevel = 0; /* application exit errorlevel */
ReleaseClasses();
ReleaseLocalSymbols(); /* releases the local modules linked list */
ReleaseDynamicSymbols(); /* releases the dynamic symbol table */
ReleaseSets(); /* releases Sets */
hb_setRelease(); /* releases Sets */
StackFree();
/* LogSymbols(); */
HB_DEBUG( "Done!\n" );