Page 1 of 1
Error FWH_2407 DrXlsX32.lib
Posted: Thu Aug 15, 2024 11:48 am
by vinhesoft
good morning,
Error: Unresolved external '__streams' referenced from C:\DEVFW\FWH_2407\LIB\DRXLSX32_BCC.LIB|drawing
Re: Error FWH_2407 DrXlsX32.lib
Posted: Fri Aug 16, 2024 11:57 am
by karinha
Re: Error FWH_2407 DrXlsX32.lib
Posted: Mon Aug 19, 2024 5:48 pm
by vinhesoft
João
Obrigado por responder.
deu certo assim, colocando no prg principal MAIN
#pragma BEGINDUMP
int _streams;
#pragma ENDDUMP
vlw
Re: Error FWH_2407 DrXlsX32.lib
Posted: Mon Aug 19, 2024 6:06 pm
by karinha
Olá, você pode colocar, diretamente no fivewin.ch
https://forums.fivetechsupport.com/view ... e1#p268507
Este erro somente acontece com o HARBOUR, conforme relatos, no xHARBOUR isto não ocorre.
abs.
Regards, saludos.
Re: Error FWH_2407 DrXlsX32.lib
Posted: Mon Aug 19, 2024 6:15 pm
by karinha
Se eu usasse os dois compiladores, faria assim:
Code: Select all | Expand
#ifdef __HARBOUR__
#ifndef __XHARBOUR__
#pragma BEGINDUMP
#ifdef __HARBOUR__
#if defined( __BORLANDC__ ) && __BORLANDC__ >= 0x0770
int _streams;
#endif
#endif
#pragma ENDDUMP
#else
/* nada a fazer e xHarbour*/
/*xHarbour e super*/
#endif
#endif
Regards, saludos.
Re: Error FWH_2407 DrXlsX32.lib
Posted: Tue Aug 20, 2024 4:20 pm
by Enrico Maria Giordano
This would violate the "one definition rule", if your application consists of more than one module and each module does include "Fivewin.ch".