FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Help: Antonio and FWH 2.7 + xHB Comercial users
Posts: 252
Joined: Tue Oct 25, 2005 02:48 PM
Help: Antonio and FWH 2.7 + xHB Comercial users
Posted: Mon Mar 06, 2006 02:04 PM

Antonio and All,

I have a serious problem with FWH 2.7 (february/2006) and
xHarbour from xHarbour.com (february/2006):

When I compile my project occur an error:
"unresolved external symbol _hb_dynsymSymbol" and I can figure were cause this error.
xHarbour.com uses a FiveHCM.lib and FiveHMX.lib.
We construct our own FiveHMX.lib with a .xbp project generated by xHarbour.com but when we compile our exe project this error appears :-(

If anybody can help me I will be glad because we can´t use february release of xHarbour´s SQLRDD and we was waiting for this for 3 months.

With xHarbour.org work fine (BCC) but xHB.com uses Pelles C.

Best regards
Maurilio

Posts: 142
Joined: Sun Oct 09, 2005 10:59 AM
Help: Antonio and FWH 2.7 + xHB Comercial users
Posted: Mon Mar 06, 2006 02:18 PM

You have to link in (till new version from xharbour) :

pragma begindump

include "hbapi.h"

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

pragma enddump

Posts: 344
Joined: Tue Oct 11, 2005 11:33 AM
Help: Antonio and FWH 2.7 + xHB Comercial users
Posted: Mon Mar 06, 2006 02:20 PM
Olá Maurilio,

Eu também tive este erro e para resolvê-lo inclui o trecho abaixo dentro do WINDOW.PRG e gerando a lib novamente:

//----------------------------------------------------------------------------//

#pragma BEGINDUMP 

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

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

#pragma ENDDUMP

//----------------------------------------------------------------------------//


Eu achei esta resposta aqui mesmo no forum dias atrás.

Abraços,

Rossine.
Obrigado, Regards, Saludos



Rossine.



Harbour and Harbour++
Posts: 252
Joined: Tue Oct 25, 2005 02:48 PM
Help: Antonio and FWH 2.7 + xHB Comercial users
Posted: Mon Mar 06, 2006 02:42 PM

English:
Thanks to Frank and Rossine
I was desperate with this error and here I found 2 solutions.
Because this I love FW :-)

Brazilian Portuguese:
Obrigado ao Rossine e ao Frank
Eu estava desesperado com este erro e aqui encontrei 2 soluçôes
Por isso que eu adoro o FW :-)

Regards/Saudações
Maurilio

Continue the discussion