FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour FWH 2603 Linking Errors
Posts: 654
Joined: Fri Oct 21, 2005 05:54 AM
FWH 2603 Linking Errors
Posted: Thu May 07, 2026 06:52 AM

Dear Mr.Antonio,

I am getting the following error while linking my application :

Embarcadero C++ 7.70 for Win32 Copyright (c) 1993-2023 Embarcadero Technologies, Inc.
Error: Unresolved external '_HB_FUN_HB_VALTOEXP' referenced from D:\NEWPROJECT\FWH_2603\LIB\FIVEHX.LIB|xbrowse
Error: Unresolved external '_HB_FUN_HB_HHASKEY' referenced from D:\NEWPROJECT\FWH_2603\LIB\FIVEHX.LIB|window
Error: Unable to perform link
* Linking errors *

I am using FWH_2603 + BCC77 + xHarbour 1.3.2 Intl. (Simplex) (Build 20260504)

Please give me a solution to avoid these errors.

-Ramesh Babu P

Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: FWH 2603 Linking Errors
Posted: Thu May 07, 2026 07:37 AM

Can you provide a minimal PRG sample showing the error, please?

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: FWH 2603 Linking Errors
Posted: Thu May 07, 2026 08:56 AM

Dear Ramesh,

Temporary workaround:

#ifdef __XHARBOUR__
  function hb_HHasKey( hHash, xKey )
  return HHasKey( hHash, xKey )

  function hb_ValToExp( uVal )
  return ValToPrgExp( uVal )
  #endif
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: FWH 2603 Linking Errors
Posted: Thu May 07, 2026 10:36 AM

I don't get any errors using neither TWindow nor TXBrowse.

Posts: 654
Joined: Fri Oct 21, 2005 05:54 AM
Re: FWH 2603 Linking Errors
Posted: Fri May 08, 2026 12:06 AM

Thank you Mr.Antonio. It is working Ok Now.

-Ramesh Babu P

Continue the discussion