i have no idea how to solve that problem.
i used the UseBriefLZPacker() to create an own format for my app. The app cross-works between windows and mac.
i have created several test-docs in my own format, which is in the reality only a file created with this packer. if i want to load them on os x, it cannot unpack the files. but if i create a new doc on the os x version of my app, it works. i see here is a incompatibility of the same packer in windows and mac. what can i do? i want to use this packer and no zip etc.
if i try to load a doc created on os x, on windows, it also does not work.
has anyone have an idea?
its just like this:
Code: Select all
UseBriefLZPacker()
If OpenPack(0, pth)
If ExaminePack(0)
While NextPackEntry(0)
fn = targetLoc + PackEntryName(0)
UncompressPackFile(0,fn)
Wend
EndIf
ClosePack(0)
EndIf