Some function Fileio not found in harbour
Posted: Thu Feb 27, 2025 4:48 pm
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
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