home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / swbback / declarat.bas < prev    next >
Encoding:
BASIC Source File  |  1999-02-17  |  504 b   |  19 lines

  1. Attribute VB_Name = "Declarations"
  2. Option Explicit
  3.  
  4. Public Declare Function GetDriveType Lib "kernel32" Alias "GetDriveTypeA" (ByVal nDrive As String) As Long
  5.  
  6. 'Tabs on main form.
  7. Public Const INCLUDE_TAB = 0
  8. Public Const EXCLUDE_TAB = 1
  9.  
  10. 'Used with GetDriveType API to determine
  11. 'which drives will appear in backup media combo.
  12. Public Const DRIVE_REMOVABLE = 2
  13.  
  14. 'Error values produced by SWBBack control.
  15. Public Const SWBBACK_ERR_CANCEL = 100
  16. Public Const SWBBACK_ERR_NO_FILES = 101
  17.  
  18.  
  19.