home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l406 / 3.ddi / SETUP1.GL_ / SETUP1.bin
Encoding:
Text File  |  1992-10-21  |  1.1 KB  |  29 lines

  1. DefInt A-Z
  2.  
  3. Global Const SRCCOPY = &HCC0020
  4.              
  5. Declare Function GetWindowsDirectory Lib "Kernel" (ByVal lpBuffer As String, ByVal nSize As Integer) As Integer
  6. Declare Function GetSystemDirectory Lib "Kernel" (ByVal lpBuffer As String, ByVal nSize As Integer) As Integer
  7. Declare Function BitBlt Lib "Gdi" (ByVal destHdc, ByVal X, ByVal Y, ByVal w, ByVal h, ByVal srcHdc, ByVal srcX, ByVal srcY, ByVal Rop As Long)
  8.  
  9. Declare Function DiskSpaceFree Lib "SETUPKIT.DLL" () As Long
  10. Declare Function AllocUnit Lib "SETUPKIT.DLL" () As Long
  11. Declare Function SetTime Lib "SETUPKIT.DLL" (ByVal A$, ByVal b$) As Integer
  12.  
  13. Declare Function VerInstallFile& Lib "VER.DLL" (ByVal Flags%, ByVal SrcFile$, ByVal DestFile$, ByVal SrcPath$, ByVal DestPath$, ByVal CurrDir$, ByVal TmpFile$, lpwTmpFileLen%)
  14.  
  15. Type OFSTRUCT
  16.     cBytes As String * 1
  17.     fFixedDisk As String * 1
  18.     nErrCode As Integer
  19.     reserved As String * 4
  20.     szPathName As String * 128
  21. End Type
  22.  
  23. Declare Function OpenFile Lib "Kernel" (ByVal lpFileName As String, lpReOpenBuff As OFStruct, ByVal wStyle As Integer) As Integer
  24.  
  25.  
  26.  
  27.  
  28.  
  29.