[Implemented] LZMA Packer Library

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
Ralf
Enthusiast
Enthusiast
Posts: 203
Joined: Fri May 30, 2003 1:29 pm
Location: Germany

[Implemented] LZMA Packer Library

Post by Ralf »

lzma - 7z compression support in pure without the use of any dll would be really great! the source its complete free: http://7-zip.com/sdk.html

LZMA_PackMethode(#aglorythm) ; 7z ...
LZMA_AddPackFile(filename$,compressionlevel)
LZMA_AddPackMemory
LZMA_ClosePack
LZMA_CreatePack
LZMA_NextPackFile
LZMA_OpenPack
LZMA_PackFileSize
LZMA_PackMemory
LZMA_PackerCallback
LZMA_UnpackMemory

if someone started or always finished a lzma/7z for pure, please let me know! :!:
KarLKoX
Enthusiast
Enthusiast
Posts: 681
Joined: Mon Oct 06, 2003 7:13 pm
Location: France
Contact:

Post by KarLKoX »

It is C++ code so it can't be added as a purebasic library without a rewrite to C wich is a big task.
"Qui baise trop bouffe un poil." P. Desproges

http://karlkox.blogspot.com/
plouf
Enthusiast
Enthusiast
Posts: 281
Joined: Fri Apr 25, 2003 6:35 pm
Location: Athens,Greece

Post by plouf »

7z compression support in pure without the use of any dll
maybe a bit OOT but you saind without any personally i have no problem to use dll
do you have any example ? with a dll ? or just said
Christos
sec
Enthusiast
Enthusiast
Posts: 792
Joined: Sat Aug 09, 2003 3:13 am
Location: 90-61-92 // EU or ASIA
Contact:

Post by sec »

KarLKoX wrote:It is C++ code so it can't be added as a purebasic library without a rewrite to C wich is a big task.
least, decompress stuff wrote in C :)
Ralf
Enthusiast
Enthusiast
Posts: 203
Joined: Fri May 30, 2003 1:29 pm
Location: Germany

Post by Ralf »

is someone here on the forum with the knowledge to convert the opensource c++ lzma z7 routines as a splitted purebasic library?
would be really cool!
Post Reply