Page 1 of 1
fwh February 2017 - RESALLFREE
Posted: Sat Mar 18, 2017 6:02 pm
by Silvio.Falconi
Friends,
Error: Unresolved external '_HB_FUN_RESALLFREE' referenced from C:\WORK\ERRORI\STUDIO\OBJ\MAIN.OBJ
Where is this function ?
Re: fwh February 2017 - RESALLFREE
Posted: Mon Mar 20, 2017 7:16 am
by Antonio Linares
It is no longer needed
For backwards compatibility you can implement it like this:
function ResAllFree()
return nil
Re: fwh February 2017 - RESALLFREE
Posted: Mon Mar 20, 2017 9:03 am
by Silvio.Falconi
yes of course !!
But then the resources are free ?
Re: fwh February 2017 - RESALLFREE
Posted: Sat Nov 16, 2019 10:38 am
by MOISES
Hi,
Yes, in FW 14.14 I exited my app as this:
Code: Select all
DbCommitAll() // Guardamos datos
SysRefresh()
DbCloseAll()
ResAllFree() // Liberamos recursos
quit
How do we liberate all resources now?
Thank you.
Re: fwh February 2017 - RESALLFREE
Posted: Sat Nov 16, 2019 10:54 am
by Silvio.Falconi
rem resallfree
Re: fwh February 2017 - RESALLFREE
Posted: Sat Nov 16, 2019 11:31 am
by MOISES
Thank you, but I thing something else should be done, for instance Hb_GCall(.t.)
Antonio, can you please provide us some guideance?