Error al Usar BCC7

Post Reply
User avatar
ruben Dario
Posts: 1070
Joined: Thu Sep 27, 2007 3:47 pm
Location: Colombia

Error al Usar BCC7

Post by ruben Dario »

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


Code: Select all | Expand


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
acuellar
Posts: 1645
Joined: Tue Oct 28, 2008 6:26 pm
Location: Santa Cruz-Bolivia

Re: Error al Usar BCC7

Post by acuellar »

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
karinha
Posts: 7941
Joined: Tue Dec 20, 2005 7:36 pm
Location: São Paulo - Brasil
Been thanked: 3 times
Contact:

Re: Error al Usar BCC7

Post by karinha »

Ruben, en xHarbour:

Code: Select all | Expand


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
ruben Dario
Posts: 1070
Joined: Thu Sep 27, 2007 3:47 pm
Location: Colombia

Re: Error al Usar BCC7

Post by ruben Dario »

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
byron.hopp
Posts: 388
Joined: Sun Nov 06, 2005 3:55 pm
Location: Southern California, USA
Contact:

Re: Error al Usar BCC7

Post by byron.hopp »

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
User avatar
Antonio Linares
Site Admin
Posts: 42548
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 31 times
Been thanked: 78 times
Contact:

Re: Error al Usar BCC7

Post by Antonio Linares »

You have lo link Borland shell32.lib
regards, saludos

Antonio Linares
www.fivetechsoft.com
byron.hopp
Posts: 388
Joined: Sun Nov 06, 2005 3:55 pm
Location: Southern California, USA
Contact:

Re: Error al Usar BCC7

Post by byron.hopp »

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
Post Reply