From 9ea2cc17543ffa82bd110a026c4838b715a00dc9 Mon Sep 17 00:00:00 2001 From: Antonio Linares Date: Thu, 20 Dec 2001 10:55:59 +0000 Subject: [PATCH] some HB_EXPORT clauses used --- harbour/include/hbvm.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/harbour/include/hbvm.h b/harbour/include/hbvm.h index ffabd5468e..7c59f2d2e3 100644 --- a/harbour/include/hbvm.h +++ b/harbour/include/hbvm.h @@ -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_ */ -