Added hb_vmPushStringPcode() prototype

This commit is contained in:
Antonio Linares
2002-01-27 09:30:00 +00:00
parent 5529cf15df
commit 87ef39fa8c

View File

@@ -100,6 +100,7 @@ extern void hb_vmPushLong( long lNumber ); /* pushes a long number onto the s
extern void hb_vmPushDouble( double lNumber, int iDec ); /* pushes a double number onto the stack */
extern void hb_vmPushLogical( BOOL bValue ); /* pushes a logical value onto the stack */
extern void hb_vmPushString( char * szText, ULONG length ); /* pushes a string on to the stack */
extern void hb_vmPushStringPcode( char * szText, ULONG length ); /* pushes a string from pcode on to the stack */
extern void hb_vmPushDate( long lDate ); /* pushes a long date onto the stack */
extern void hb_vmPushSymbol( PHB_SYMB pSym ); /* pushes a function pointer onto the stack */
extern void hb_vmPushPointer( void * ); /* push an item of HB_IT_POINTER type */