20000422-06:20 GMT-8 Ron Pinkas <Ron@Profit-Master.com>

* source/include/hbvm.h
     * Corrected comments of hb_vmPushOne(), hb_vmPushZero(), and hb_vmPushByte()
This commit is contained in:
Ron Pinkas
2000-04-22 13:22:15 +00:00
parent da278bc7ca
commit 2a333af85c
2 changed files with 8 additions and 4 deletions

View File

@@ -1,10 +1,14 @@
20000422-06:20 GMT-8 Ron Pinkas <Ron@Profit-Master.com>
* source/include/hbvm.h
* Corrected comments of hb_vmPushOne(), hb_vmPushZero(), and hb_vmPushByte()
20000422-13:50 GMT+1 Ryszard Glab <rglab@imid.med.pl>
*source/rtl/gtcrs/gtcrs.c
*source/rtl/gtcrs/mousecrs.c
*fixed arrow keys under xterm
*added support for mouse under xterm
*source/compiler/harbour.c
*fixed duplicated variable error when PARAMETER variable was
also declared as a MEMVAR variable

View File

@@ -77,9 +77,9 @@ extern void hb_vmFunction( USHORT uiParams ); /* executes a function saving i
extern void hb_vmPush( PHB_ITEM pItem ); /* pushes a generic item onto the stack */
extern void hb_vmPushNil( void ); /* in this case it places nil at self */
extern void hb_vmPushNumber( double dNumber, int iDec ); /* pushes a number on to the stack and decides if it is integer, long or double */
extern void hb_vmPushOne( void ); /* pushes a 0 onto the stack */
extern void hb_vmPushZero( void ); /* pushes a 1 onto the stack */
extern void hb_vmPushByte( BYTE bNumber ); /* pushes a integer number onto the stack */
extern void hb_vmPushOne( void ); /* pushes a 1 onto the stack */
extern void hb_vmPushZero( void ); /* pushes a 0 onto the stack */
extern void hb_vmPushByte( BYTE bNumber ); /* pushes a 1 byte integer number onto the stack */
extern void hb_vmPushInteger( int iNumber ); /* pushes a integer number onto the stack */
extern void hb_vmPushLong( long lNumber ); /* pushes a long number onto the stack */
extern void hb_vmPushDouble( double lNumber, int iDec ); /* pushes a double number onto the stack */