Some function Fileio not found in harbour

Post Reply
User avatar
Silvio.Falconi
Posts: 7232
Joined: Thu Oct 18, 2012 7:17 pm
Been thanked: 16 times

Some function Fileio not found in harbour

Post by Silvio.Falconi »

I need to correct this lines but Harbour not found these function

Error: Unresolved external '_HB_FUN_FREADLINE' referenced from C:\WORK\ERRORI\IP_COMPUTER\OBJ\TEST.OBJ
Error: Unresolved external '_HB_FUN_FDELETE' referenced from C:\WORK\ERRORI\IP_COMPUTER\OBJ\TEST.OBJ


IF FILE( "temp_output.txt" )
nHandle := FOpen( "temp_output.txt", FO_READ )
IF nHandle >= 0
DO WHILE !HB_FEOF( nHandle )
cLine := FReadLine( nHandle )
cOutput += cLine + CRLF
ENDDO
FClose( nHandle )
ENDIF

FDelete( "temp_output.txt" )
ENDIF
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Post Reply