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

  1. ' Visual Basic declares file for
  2. '
  3. '     azip32.dll    addZIP 32-bit compression library
  4. '
  5. ' Copyright ⌐ 1996,1997 Stephen Darlington. All rights reserved.
  6. ' Written by Stephen Darlington                  August 1997
  7.  
  8. ' Function declarations
  9. Declare Function addZIP Lib "azip32.dll"() As Integer
  10. Declare Function addZIP_Abort Lib "azip32.dll" (ByVal bFlag As Integer) As Integer
  11. Declare Function addZIP_ArchiveName Lib "azip32.dll"( ByVal lpStr As String) As Integer
  12. Declare Function addZIP_BuildSFX Lib "azip32.dll" (ByVal iFlag as Integer) as Integer
  13. Declare Function addZIP_ClearAttributes Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  14. Declare Function addZIP_Comment Lib "azip32.dll"( ByVal lpStr As String) As Integer
  15. Declare Function addZIP_Delete Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  16. Declare Function addZIP_DeleteComment Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  17. Declare Function addZIP_DisplayComment Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  18. Declare Function addZIP_Encrypt Lib "azip32.dll"( ByVal lpStr As String) As Integer
  19. Declare Function addZIP_Exclude Lib "azip32.dll"( ByVal lpStr As String) As Integer
  20. Declare Function addZIP_ExcludeListFile Lib "azip32.dll"( ByVal lpStr As String) As Integer
  21. Declare Function addZIP_GetLastError Lib "azip32.dll"() As Integer
  22. Declare Function addZIP_GetLastWarning Lib "azip32.dll"() As Integer
  23. Declare Function addZIP_Include Lib "azip32.dll"( ByVal lpStr As String) As Integer
  24. Declare Function addZIP_IncludeArchive Lib "azip32.dll"( ByVal iFlag As Integer) As Integer
  25. Declare Function addZIP_IncludeDirectoryEntries Lib "azip32.dll"( ByVal flag As Integer) As Integer
  26. Declare Function addZIP_IncludeFilesNewer Lib "azip32.dll"( ByVal DateVal As String) As Integer
  27. Declare Function addZIP_IncludeFilesOlder Lib "azip32.dll"( ByVal DateVal As String) As Integer
  28. Declare Function addZIP_IncludeHidden Lib "azip32.dll"( ByVal iFlag As Integer) As Integer
  29. Declare Function addZIP_IncludeListFile Lib "azip32.dll"( ByVal lpStr As String) As Integer
  30. Declare Function addZIP_IncludeReadOnly Lib "azip32.dll"( ByVal iFlag As Integer) As Integer
  31. Declare Function addZIP_IncludeSystem Lib "azip32.dll"( ByVal iFlag As Integer) As Integer
  32. Declare Sub addZIP_Initialise Lib "azip32.dll" ()
  33. Declare Function addZIP_InstallCallback Lib "azip32.dll"( ByVal cbFunction As Long) As Integer
  34. Declare Function addZIP_Overwrite Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  35. Declare Function addZIP_Recurse Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  36. Declare Function addZIP_Register Lib "azip32.dll"( ByVal lpStr As String, ByVal Uint32 As Long) As Integer
  37. Declare Function addZIP_SaveAttributes Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  38. Declare Function addZIP_SaveRelativeTo Lib "azip32.dll"( ByVal szPath As String) As Integer
  39. Declare Function addZIP_SaveStructure Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  40. Declare Function addZIP_SetArchiveDate Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  41. Declare Function addZIP_SetCompressionLevel Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  42. Declare Function addZIP_SetParentWindowHandle Lib "azip32.dll"( ByVal Hwnd As Long) As Integer
  43. Declare Function addZIP_SetTempDrive Lib "azip32.dll"( ByVal lpStr As String) As Integer
  44. Declare Function addZIP_SetWindowHandle Lib "azip32.dll"( ByVal Hwnd As Long) As Integer
  45. Declare Function addZIP_Span Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  46. Declare Function addZIP_Store Lib "azip32.dll"( ByVal lpStr As String) As Integer
  47. Declare Function addZIP_UseLFN Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  48. Declare Function addZIP_View Lib "azip32.dll"( ByVal Int16 As Integer) As Integer
  49.