home *** CD-ROM | disk | FTP | other *** search
/ Software Recommendations - 1998 Season 1 / DNBCD4.iso / develop / lib / addzip / ADDZIP.ZIP / VB / AUNZIP32.BAS < prev    next >
Encoding:
BASIC Source File  |  1997-08-15  |  2.5 KB  |  34 lines

  1. ' Visual Basic declares file for
  2. '
  3. '     aunzip32.dll  addUNZIP 32-bit decompression library
  4. '
  5. ' Copyright ⌐ 1996,1997 Stephen Darlington. All rights reserved.
  6. ' Written by Stephen Darlington                  August 1997
  7.  
  8. Declare Function addUNZIP Lib "aunzip32.dll"() As Long
  9. Declare Function addUNZIP_Abort lib "aunzip32.dll" (ByVal iFlag as Integer) as Integer
  10. Declare Function addUNZIP_ArchiveName Lib "aunzip32.dll"( ByVal filename As String) As Integer
  11. Declare Function addUNZIP_Decrypt Lib "aunzip32.dll"( ByVal cPassword As String) As Integer
  12. Declare Function addUNZIP_DisplayComment Lib "aunzip32.dll"( ByVal bFlag As Integer) As Integer
  13. Declare Function addUNZIP_Exclude Lib "aunzip32.dll"( ByVal files As String) As Integer
  14. Declare Function addUNZIP_ExcludeListFile Lib "aunzip32.dll"( ByVal cFile As String) As Integer
  15. Declare Function addUNZIP_ExtractTo Lib "aunzip32.dll"( ByVal cPath As String) As Integer
  16. Declare Function addUNZIP_Freshen Lib "aunzip32.dll"( ByVal iFlag As Integer) As Integer
  17. Declare Function addUNZIP_GetLastError Lib "aunzip32.dll"() As Integer
  18. Declare Function addUNZIP_GetLastWarning Lib "aunzip32.dll"() As Integer
  19. Declare Function addUNZIP_Include Lib "aunzip32.dll"( ByVal files As String) As Integer
  20. Declare Function addUNZIP_IncludeListFile Lib "aunzip32.dll"( ByVal cFile As String) As Integer
  21. Declare Sub addUNZIP_Initialise Lib "aunzip32.dll" ()
  22. Declare Function addUNZIP_InstallCallback Lib "aunzip32.dll"( ByVal fn As Long) As Integer
  23. Declare Function addUNZIP_Overwrite Lib "aunzip32.dll"( ByVal iFlag As Integer) As Integer
  24. Declare Function addUNZIP_Register Lib "aunzip32.dll"( ByVal cName As String, ByVal iNumber As Long) As Integer
  25. Declare Function addUNZIP_ResetDefaults Lib "aunzip32.dll"()
  26. Declare Function addUNZIP_RestoreAttributes Lib "aunzip32.dll"( ByVal iFlag As Integer) As Integer
  27. Declare Function addUNZIP_RestoreStructure Lib "aunzip32.dll"( ByVal iFlag As Integer) As Integer
  28. Declare Function addUNZIP_SetParentWindowHandle Lib "aunzip32.dll"( ByVal hwnd As Long) As Integer
  29. Declare Function addUNZIP_SetWindowHandle Lib "aunzip32.dll"( ByVal hwnd As Long) As Integer
  30. Declare Function addUNZIP_Test Lib "aunzip32.dll"( ByVal iFlag As Integer) As Integer
  31. Declare Function addUNZIP_ToMemory Lib "aunzip32.dll"( ByVal lpStr As String, ByVal Uint32 As Long) As Integer
  32. Declare Function addUNZIP_Update Lib "aunzip32.dll"( ByVal iFlag As Integer) As Integer
  33. Declare Function addUNZIP_View Lib "aunzip32.dll"( ByVal bFlag As Integer) As Integer
  34.