From 87ef39fa8c75bc820be2f1efa6bc56ec7226a56a Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Sun, 27 Jan 2002 09:30:00 +0000 Subject: [PATCH] Added hb_vmPushStringPcode() prototype --- harbour/include/hbvm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/harbour/include/hbvm.h b/harbour/include/hbvm.h index c235fea8ee..a91139d0d6 100644 --- a/harbour/include/hbvm.h +++ b/harbour/include/hbvm.h @@ -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 */