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

  1. ' Visual Basic declares file for
  2. '
  3. '     aunzip16.dll  addUNZIP 16-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 "aunzip16.dll" () As Long
  9. Declare Function addUNZIP_Abort lib "aunzip16.dll" (ByVal iFlag as Integer) as Integer
  10. Declare Function addUNZIP_ArchiveName Lib "aunzip16.dll" (ByVal filename As String) As Integer
  11. Declare Function addUNZIP_Decrypt Lib "aunzip16.dll" (ByVal cPassword As String) As Integer
  12. Declare Function addUNZIP_DisplayComment Lib "aunzip16.dll" (ByVal bFlag As Integer) As Integer
  13. Declare Function addUNZIP_Exclude Lib "aunzip16.dll" (ByVal files As String) As Integer
  14. Declare Function addUNZIP_ExcludeListFile Lib "aunzip16.dll" (ByVal cFile As String) As Integer
  15. Declare Function addUNZIP_ExtractTo Lib "aunzip16.dll" (ByVal cPath As String) As Integer
  16. Declare Function addUNZIP_Freshen Lib "aunzip16.dll" (ByVal iFlag As Integer) As Integer
  17. Declare Function addUNZIP_GetLastError Lib "aunzip16.dll" () As Integer
  18. Declare Function addUNZIP_GetLastWarning Lib "aunzip16.dll" () As Integer
  19. Declare Function addUNZIP_Include Lib "aunzip16.dll" (ByVal files As String) As Integer
  20. Declare Function addUNZIP_IncludeListFile Lib "aunzip16.dll" (ByVal cFile As String) As Integer
  21. Declare Sub addUNZIP_Initialise Lib "aunzip16.dll" ()
  22. Declare Function addUNZIP_InstallCallback Lib "aunzip16.dll" (ByVal fn As Long) As Integer
  23. Declare Function addUNZIP_Overwrite Lib "aunzip16.dll" (ByVal iFlag As Integer) As Integer
  24. Declare Function addUNZIP_Register Lib "aunzip16.dll" (ByVal cName As String, ByVal iNumber As Long) As Integer
  25. Declare Function addUNZIP_ResetDefaults Lib "aunzip16.dll" ()
  26. Declare Function addUNZIP_RestoreAttributes Lib "aunzip16.dll" (ByVal iFlag As Integer) As Integer
  27. Declare Function addUNZIP_RestoreStructure Lib "aunzip16.dll" (ByVal iFlag As Integer) As Integer
  28. Declare Function addUNZIP_SetParentWindowHandle Lib "aunzip16.dll" (ByVal Hwnd As Integer) As Integer
  29. Declare Function addUNZIP_SetWindowHandle Lib "aunzip16.dll" (ByVal Hwnd As Integer) As Integer
  30. Declare Function addUNZIP_Test Lib "aunzip16.dll" (ByVal iFlag As Integer) As Integer
  31. Declare Function addUNZIP_ToMemory Lib "aunzip16.dll" (ByVal lpStr As String, ByVal Uint32 As Long) As Integer
  32. Declare Function addUNZIP_Update Lib "aunzip16.dll" (ByVal iFlag As Integer) As Integer
  33. Declare Function addUNZIP_View Lib "aunzip16.dll" (ByVal bFlag As Integer) As Integer
  34.  
  35.