posible solucion: error __streams al usar fwh<24.02 y bcc770

Post Reply
User avatar
carlos vargas
Posts: 1721
Joined: Tue Oct 11, 2005 5:01 pm
Location: Nicaragua

posible solucion: error __streams al usar fwh<24.02 y bcc770

Post by carlos vargas »

Siguiendo las indicaciones de enrico al encontrarnos este error, cuando queremos usar bcc 7.70, con una version de fwh anterior a la 24.02
Unresolved external '__streams' referenced from D:\FWH\LIB\FIVEH.LIB|HARBOUR
he realizado este cambio al final del archivo fivewin.ch

Code: Select all | Expand

#pragma BEGINDUMP
#ifdef __HARBOUR__
#if defined( __BORLANDC__ ) && __BORLANDC__ >= 0x0770
int _streams;
#endif
#endif
#pragma ENDDUMP
 
salu2
carlos vargas
Salu2
Carlos Vargas
Desde Managua, Nicaragua (CA)
User avatar
Antonio Linares
Site Admin
Posts: 42270
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: posible solucion: error __streams al usar fwh<24.02 y bcc770

Post by Antonio Linares »

Gracias Carlos por el aporte!
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Enrico Maria Giordano
Posts: 8728
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Re: posible solucion: error __streams al usar fwh<24.02 y bcc770

Post by Enrico Maria Giordano »

I would prefer to put that definition in a FWH .c file (if it is enough to solve the problem, please check). Otherwise it would be included in each PRG of a project.
User avatar
Antonio Linares
Site Admin
Posts: 42270
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: posible solucion: error __streams al usar fwh<24.02 y bcc770

Post by Antonio Linares »

You are right Enrico
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
carlos vargas
Posts: 1721
Joined: Tue Oct 11, 2005 5:01 pm
Location: Nicaragua

Re: posible solucion: error __streams al usar fwh<24.02 y bcc770

Post by carlos vargas »

Antonio, sería posible entonces un archivo por ejemplo llamado fix.prg con el contenido que se indico y que se adicione a fiveh.lib?
Probaré y comento...
Salu2
Carlos Vargas
Desde Managua, Nicaragua (CA)
User avatar
Antonio Linares
Site Admin
Posts: 42270
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: posible solucion: error __streams al usar fwh<24.02 y bcc770

Post by Antonio Linares »

Carlos,

No podemos hacer eso o generaríamos símbolos duplicados

Entiendo que la solución correcta es usar el compilador de C adecuado y de no poder actualizar debe ser una solución temporal del desarrollador
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
carlos vargas
Posts: 1721
Joined: Tue Oct 11, 2005 5:01 pm
Location: Nicaragua

Re: posible solucion: error __streams al usar fwh<24.02 y bcc770

Post by carlos vargas »

Entiendo..
Salu2
Carlos Vargas
Desde Managua, Nicaragua (CA)
Post Reply