Page 1 of 1

Error after installing FWH 2.7

Posted: Sun Apr 02, 2006 8:02 pm
by Jules de Pierre
After using FWH 2.7 for the first time I get an missing external error:

hb_dynsymSymbol

Is that due to FWH or maybe xHB which also is a new vesrsion (March)

Jules de Pierre

Posted: Sun Apr 02, 2006 10:13 pm
by Antonio Linares
Jules,

Its a missing xharbour symbol. You have to add this to the PRG:

Code: Select all

#pragma BEGINDUMP 

#include "hbapi.h" 
#include "hbapiitm.h" 

PHB_SYMB hb_dynsymSymbol( PHB_DYNS pDynSym ) 
{ 
   return pDynSym->pSymbol; 
} 

#pragma ENDDUMP

Posted: Sun Apr 02, 2006 10:58 pm
by Jules de Pierre
It is working OK now.

Thanks Antonio

Jules