Page 1 of 1

Error al Usar BCC7

PostPosted: Thu Oct 01, 2015 2:15 am
by ruben Dario
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

 

Re: Error al Usar BCC7

PostPosted: Thu Oct 01, 2015 10:44 am
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

Re: Error al Usar BCC7

PostPosted: Thu Oct 01, 2015 1:39 pm
by karinha
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.


Re: Error al Usar BCC7

PostPosted: Thu Oct 01, 2015 2:24 pm
by ruben Dario
Gracias, Por su informacion.

Ya me funciono , agregue estas librerias.

hbmzip.lib minizip.lib hbziparc.lib

Re: Error al Usar BCC7

PostPosted: Mon Jan 04, 2016 12:08 am
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 ...

Re: Error al Usar BCC7

PostPosted: Mon Jan 04, 2016 8:22 am
by Antonio Linares
You have lo link Borland shell32.lib

Re: Error al Usar BCC7

PostPosted: Mon Jan 04, 2016 9:29 am
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 ...