FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour FWH 1406 build 6 Compile error
Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
FWH 1406 build 6 Compile error
Posted: Sat Nov 08, 2014 05:20 PM
Antonio

First chance I have had to install 1409 build 6 .. taking the simple grouptest program+Xp Manifest I get this compile error:

Unresolved external 'SHCreateDirectoryExA' referenced from c:\fwh1409\Lib\FIVEHC.LIB|MKDIR

I am using xHarbour and Borland 5.82

Rick Lipkin

Code (fw): Select all Collapse
#include "FiveWin.ch"

function Main()

   local oDlg

   SetDlgGradient( { { 1, RGB( 199, 216, 237 ), RGB( 237, 242, 248 ) } } )

   DEFINE DIALOG oDlg SIZE 300, 300

   @ 1, 1 GROUP TO 4, 12 PROMPT "First" OF oDlg

   @ 5, 1 GROUP TO 8, 12 PROMPT "Second" OF oDlg

   ACTIVATE DIALOG oDlg CENTERED

return nil


Unresolved external 'SHCreateDirectoryExA' referenced from c:\fwh1409\Lib\FIVEHC.LIB|MKDIR
Posts: 9020
Joined: Thu Oct 06, 2005 08:17 PM
Re: FWH 1406 build 6 Compile error
Posted: Sat Nov 08, 2014 05:35 PM

Rick,

add shell32.lib to your link script.

EMG

Posts: 2706
Joined: Fri Oct 07, 2005 01:50 PM
Re: FWH 1406 build 6 Compile error
Posted: Sat Nov 08, 2014 06:35 PM

Enrico

Thank you , that worked :D

Rick Lipkin

Continue the discussion