some HB_EXPORT clauses used

This commit is contained in:
Antonio Linares
2001-12-20 10:55:59 +00:00
parent d9b14d6431
commit 9ea2cc1754

View File

@@ -60,12 +60,12 @@ extern "C" {
#endif
/* Harbour virtual machine init/exit functions */
extern void hb_vmInit( BOOL bStartMainProc );
extern void hb_vmQuit( void ); /* Immediately quits the virtual machine */
extern void HB_EXPORT hb_vmInit( BOOL bStartMainProc );
extern void HB_EXPORT hb_vmQuit( void ); /* Immediately quits the virtual machine */
/* Harbour virtual machine functions */
extern void hb_vmExecute( const BYTE * pCode, PHB_SYMB pSymbols ); /* invokes the virtual machine */
extern void hb_vmProcessSymbols( PHB_SYMB pSymbols, USHORT uiSymbols ); /* statics symbols initialization */
extern void HB_EXPORT hb_vmExecute( const BYTE * pCode, PHB_SYMB pSymbols ); /* invokes the virtual machine */
extern void HB_EXPORT hb_vmProcessSymbols( PHB_SYMB pSymbols, USHORT uiSymbols ); /* statics symbols initialization */
extern void hb_vmSymbolInit_RT( void ); /* initialization of runtime support symbols */
/* Harbour virtual machine escaping API */
@@ -112,4 +112,3 @@ extern void hb_vmPushPointer( void * ); /* push an item of HB_IT_POINTER type
#endif
#endif /* HB_VM_H_ */