Unfortunately, I haven't found documentation (except in Japanese), but I
hope so, it's also useful
The folder-structure corresponds in the IncludePack used, 7-zip32.dll is in the
compilers subdirectory.
http://www.purebasic.fr/english/viewtop ... ncludepack
Example:
Code: Select all
XIncludeFile #PB_Compiler_Home + "Includes\7-zip32_Include.pbi"
Define.l HARC = SevenZipOpenArchive(0, #PB_Compiler_Home + "Includes\Libraries\sourcen\7-zip32.7z", #ARCEXTRACT_OPEN)
Define.INDIVIDUALINFO INFO
If HARC
  If Not SevenZipFindFirst.l(HARC, "*.*", @INFO)
    Debug INFO\szFileName
    While Not SevenZipFindNext(HARC, @INFO)
    
      Debug INFO\szFileName
      
    Wend
  EndIf
  SevenZipCloseArchive.l(HARC)
EndIf
Download 336kb
Feedback and Bug-Reports welcome
Greetings
Thomas




