' Function Declarations for DRVUTILS.DLL ' ' Copyright 1994 by TANSTAAFL Software ' P.O. Box 260075 ' Lakewood, CO 80226 ' (303) 989-7389 ' ' ' Constants used by DRVUTILS.DLL ' ' File Attributes ' Global Const A_NORMAL = 0 Global Const A_RDONLY = 1 Global Const A_HIDDEN = 2 Global Const A_SYSTEM = 4 Global Const A_VOLID = 8 Global Const A_SUBDIR = 16 Global Const A_ARCH = 32 ' ' Error Codes ' Global Const ENOENT = 2 Global Const EBADF = 9 Global Const ENOMEM = 12 Global Const EACCES = 13 Global Const EINVAL = 22 Global Const EMFILE = 24 Global Const ENOSPC = 28 Global Const BADDATE = 998 Global Const BADTIME = 999 ' ' Function Declarations ' Declare Function DiskBytesTotal Lib "DRVUTILS.DLL" (ByVal Drv As String) As Long Declare Function DiskBytesUsed Lib "DRVUTILS.DLL" (ByVal Drv As String) As Long Declare Function DiskBytesFree Lib "DRVUTILS.DLL" (ByVal Drv As String) As Long Declare Function DiskBytesSector Lib "DRVUTILS.DLL" (ByVal Drv As String) As Long Declare Function DiskBytesCluster Lib "DRVUTILS.DLL" (ByVal Drv As String) As Long Declare Function FileGetBytes Lib "DRVUTILS.DLL" (ByVal Fil As String) As Long Declare Function FileGetAttributes Lib "DRVUTILS.DLL" (ByVal Fil As String) As Integer Declare Function FileSetAttributes Lib "DRVUTILS.DLL" (ByVal Fil As String, ByVal Attr As Integer) As Integer Declare Function FileGetDateTime Lib "DRVUTILS.DLL" (ByVal Fil As String, Ayear As Integer, Amonth As Integer, Aday As Integer, Ahour As Integer, Aminute As Integer, Asecond As Integer) As Integer Declare Function FileSetDateTime Lib "DRVUTILS.DLL" (ByVal Fil As String, Ayear As Integer, Amonth As Integer, Aday As Integer, Ahour As Integer, Aminute As Integer, Asecond As Integer) As Integer Declare Function FileZAPP Lib "DRVUTILS.DLL" (ByVal Fil As String, ByVal Pattern As Integer) As Integer