src = "This is a testing line string.This is a testing line string.This is a testing line string.This is a testing line string.This is a testing line string."
srcLen = Len(src)
*srcMem = AllocateMemory(srcLen + 1)
*destMem= AllocateMemory(srcLen+100)
PokeS(*srcMem, src)
res = PackMemory(*srcMem, *destMem, srcLen)
debug src
debug "Pack Result = " + Str(res)
debug "Packed String = " + PeekS(*destMem)
My question is :
After I use the packer function to pack/compress something, I need to collect the result of the packing and store it somewhere. How can I do that?