Page 1 of 1

Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

PostPosted: Thu Jan 25, 2024 4:22 pm
by CARLOS ATUNCAR
Proyecto: eFactura, Entorno: fwh2307:
[1]:iLink32.Exe -Gn -aa -Tpe -s -v @eFactura.bcl
Turbo Incremental Link 6.98 Copyright (c) 1997-2023 Embarcadero Technologies, Inc.
Error: Unresolved external '_hb_parldef' referenced from E:\TOOLS\FWH2307\LIB\FIVEHC.LIB|STR2HEX
Error: Unresolved external '_hb_retclen_buffer' referenced from E:\TOOLS\FWH2307\LIB\FIVEHC.LIB|STR2HEX
Error: Unable to perform link


Buenos dias alguna sugerencia. Gracias

Re: Error al Compilar con Fwh 2307 Bcc76

PostPosted: Thu Jan 25, 2024 9:39 pm
by Antonio Linares
Estimado Carlos,

Usas Harbour ó xHarbour ?

Re: Error al Compilar con Fwh 2307 Bcc76

PostPosted: Fri Jan 26, 2024 4:39 am
by CARLOS ATUNCAR
Gracias por Contestar con xHarbour, ya encontre la solucion

Re: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

PostPosted: Fri Jan 26, 2024 6:31 am
by Antonio Linares
Puedes explicarnos como lo has solucionado ? gracias

Re: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

PostPosted: Fri Jan 26, 2024 11:03 pm
by CARLOS ATUNCAR
Antonio Linares wrote:Puedes explicarnos como lo has solucionado ? gracias


Agrege a mi prg este porcion

#pragma BEGINDUMP

#include <hbapi.h>

#undef hb_retclen_buffer
#undef hb_parldef

void hb_retclen_buffer( char * szText, int nLen )
{
hb_retclen( szText, nLen );
}

int hb_parldef( int iParam, int iDefValue )
{
return hb_parl( iParam, iDefValue );
}

#pragma ENDDUMP

Re: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

PostPosted: Sat Jan 27, 2024 5:43 am
by Antonio Linares
gracias!