i've readen some posts about to free sting using asm but they are not native functions.
First of all, my quetion is :
I have a structure for exemple like this
Code: Select all
Structure essai
String_1$
String_2$
Long_1.l
endstructureCode: Select all
*pt.essai = allocatememory(sizeof(essai))If i use this
Code: Select all
Freememory(*pt)If they don't be freeing , how to free them ?
Is there the same managment when you allocate a global or protected *pt ?
I use a code which use intensive internal strings like above, so, i want to free strings before destroying memory block (not *pt\String_1$ ="").
any chance to get FreeString(...) command ?

