Error al Usar BCC7

Error al Usar BCC7

Postby ruben Dario » Thu Oct 01, 2015 2:15 am

Saludos al forum
usando bcc7
al compilar me da esyte error, alguin el ha pasado esto.


Code: Select all  Expand view

Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc.
Error: Unresolved external '_HB_FUN_HB_GETFILESINZIP' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPOPEN' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEFIRST' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEINFO' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEOPEN' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILEREAD' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILECLOSE' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPFILENEXT' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unresolved external '_HB_FUN_HB_UNZIPCLOSE' referenced from K:\FWH\LIB\FIVEH.LIB|OLEFUNCS
Error: Unable to perform link

 
Ruben Dario Gonzalez
Cali-Colombia
rubendariogd@hotmail.com - rubendariogd@gmail.com
User avatar
ruben Dario
 
Posts: 1061
Joined: Thu Sep 27, 2007 3:47 pm
Location: Colombia

Re: Error al Usar BCC7

Postby acuellar » Thu Oct 01, 2015 10:44 am

Ruben

Te falta una librería, compara con éstas:

FWH = FiveH.lib FiveHC.lib

HARBOUR = hbrtl.lib hbvm.lib gtgui.lib hblang.lib hbmacro.lib hbrdd.lib rddntx.lib rddcdx.lib rddfpt.lib hbsix.lib hbdebug.lib hbcommon.lib hbpp.lib hbcpage.lib hbwin.lib hbct.lib xHB.lib hbcplr.lib hbpcre.lib png.lib hbzlib.lib

BCC7 = cw32.lib import32.lib odbc32.lib msimg32.lib nddeapi.lib iphlpapi.lib psapi.lib ws2_32.lib shell32.lib

Saludos,

Adhemar
Saludos,

Adhemar C.
User avatar
acuellar
 
Posts: 1594
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Re: Error al Usar BCC7

Postby karinha » Thu Oct 01, 2015 1:39 pm

Ruben, en xHarbour:

Code: Select all  Expand view

C:\FWH1505\lib\FiveHX.lib          +
C:\FWH1505\lib\FiveHC.lib          +
C:\XHB1505\lib\hbzip.Lib           +
C:\XHB1505\lib\zlib.Lib            +
C:\XHB1505\lib\rtl.Lib             +
C:\XHB1505\lib\vm.Lib              +
C:\XHB1505\lib\gtgui.Lib           +
C:\XHB1505\lib\lang.Lib            +
C:\XHB1505\lib\macro.Lib           +
C:\XHB1505\lib\rdd.Lib             +
C:\XHB1505\lib\dbfntx.Lib          +
C:\XHB1505\lib\dbfcdx.Lib          +
C:\XHB1505\lib\debug.Lib           +
C:\XHB1505\lib\common.Lib          +
C:\XHB1505\lib\tip.Lib             +
C:\XHB1505\lib\pp.Lib              +
C:\XHB1505\lib\dbffpt.Lib          +
C:\XHB1505\lib\codepage.Lib        +
C:\XHB1505\lib\HbSix.Lib           +
C:\XHB1505\lib\PcRepos.Lib         +
C:\XHB1505\Lib\ct.Lib              +
C:\XHB1505\Lib\png.Lib             +
C:\Bcc7\lib\cw32.Lib               +
C:\Bcc7\lib\psdk\msimg32.Lib       +
C:\Bcc7\lib\psdk\odbc32.Lib        +
C:\Bcc7\lib\psdk\rasapi32.Lib      +
C:\Bcc7\lib\psdk\nddeapi.Lib       +
C:\Bcc7\lib\psdk\psapi.Lib         +
C:\Bcc7\lib\psdk\gdiplus.lib       +
C:\Bcc7\lib\psdk\iphlpapi.Lib      +
c:\bcc7\lib\psdk\shell32.lib       +
C:\Bcc7\lib\import32.Lib
 


Saludos.

João Santos - São Paulo - Brasil - Phone: +55(11)95150-7341
User avatar
karinha
 
Posts: 7343
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil

Re: Error al Usar BCC7

Postby ruben Dario » Thu Oct 01, 2015 2:24 pm

Gracias, Por su informacion.

Ya me funciono , agregue estas librerias.

hbmzip.lib minizip.lib hbziparc.lib
Ruben Dario Gonzalez
Cali-Colombia
rubendariogd@hotmail.com - rubendariogd@gmail.com
User avatar
ruben Dario
 
Posts: 1061
Joined: Thu Sep 27, 2007 3:47 pm
Location: Colombia

Re: Error al Usar BCC7

Postby byron.hopp » Mon Jan 04, 2016 12:08 am

Thank you this got rid of all the zip problems, but I still have:

Error: Unresolved external 'SHCreateDirectoryExA' referenced from C:\FWH\LIB\FIVEHC.LIB|MKDIR
Error: Unable to perform link

I not sure how it is being called, I have checked for MKDIR, lMkDir, and SHCreateDirectoryExA but cannot find it in any of my source.

Thanks,

Byron ...
Thanks,
Byron Hopp
Matrix Computer Services
byron.hopp
 
Posts: 356
Joined: Sun Nov 06, 2005 3:55 pm
Location: Southern California, USA

Re: Error al Usar BCC7

Postby Antonio Linares » Mon Jan 04, 2016 8:22 am

You have lo link Borland shell32.lib
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41405
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Error al Usar BCC7

Postby byron.hopp » Mon Jan 04, 2016 9:29 am

Thank you,

I did finally find the problem on a post in this site.

I guess I didn't look hard enough.

Thanks again,

Byron ...
Thanks,
Byron Hopp
Matrix Computer Services
byron.hopp
 
Posts: 356
Joined: Sun Nov 06, 2005 3:55 pm
Location: Southern California, USA


Return to FiveWin para Harbour/xHarbour

Who is online

Users browsing this forum: No registered users and 45 guests